hello
I have a script for doing my backups of applications that doesn't offer a simpler way
firefox is one of those... although there's MozBackup has an option to use a config script which automatically should do the backup, it didn't work for me
so I wrote an autohotkey script and it works fine on my tests
however, when it runs from task scheduler, it just doesn't focus on mozbackup window:
Code:
Run, c:\Arquivos de programas\mozbackup\MozBackup.exe
Sleep 5000
IfWinNotActive, MozBackup , , WinActivate, MozBackup ,
WinWaitActive, MozBackup ,
Sleep 5000
... stuff to do here
when I come back the next day, the MozBackup window is out of focus and, if I just click it, autohotkey keeps going
so, any ideas on what may be happening?
thanks