I'm looking for a software that combines macro recording with screenshot taking capabilities.
We have a software manual with a number of screenshots. When new version of software is released we need to update most of screenshots and we have to do it manually. Now we started translating manual to several languages and number of screenshots to take have increased ten fold. We'd like to automate this process.
There will be a recorded macro or something that clicks button within our software and takes screenshots of the program window. Better yet, we can specify the name of each screenshot individually though it's less important.
Does such a thing exist?
I use AutoIt plus captdll.dll for all my Windows GUI automation tasks.
Example:
Run("Notepad.exe", @WindowsDir, @SW_MAXIMIZE) ; Open NOTEPAD
Sleep(1000)
Send("Just a Test") ; Send some text to notepad
; Save the screen to test.jpg
$anPos = WinGetClientSize("")
$nLeft = 0
$nTop = 0
$nRight = $anPos[0]
$nBottom = $anPos[1]
$sFileName = "test.jpg"
DllCall("captdll.dll", "int:cdecl", "CaptureScreen", "str", $sFileName, "int", 85)
This way you can automate the entire screenshot capturing process:
You can also add conditional logic, loop, etc.