
10th Nov 2006, 6:36 pm
|
|
Junior Member
|
|
Join Date: Oct 2006
Posts: 36
|
|
Automatic fw extracting
Does anyone know of a program to extract the images and strings in a fw file? I wrote this up for now in AutoHotKey. If anyone has a better way, please tell me (this script is very unstable. disconnect from the internet and stop all unnecessary processes before running).
Code:
; fwextract
#e::
Loop, 360 {
Sleep, 80
Click, 618, 92
Sleep, 80
Send, {ENTER}
Sleep, 80
Click, 29, 487
Sleep, 80
Send, {DOWN}
}
return
; fwupdate
#u::
Loop, 360 {
Sleep, 80
Click, 562, 92
Sleep, 80
Send, {ENTER}
Sleep, 80
Click, 29, 487
Sleep, 80
Send, {DOWN}
}
return
#p::
Pause
return
|