I would use autoit, but yesterday i ended up making most of the script. I decided to go with a .vbs (Visual Basic Script).
The only thing i need to figure out is how to loop it.
Here's what I have so far:
Code:
Set obj = CreateObject("WScript.Shell")
' Activate Window - Using PID or Title
obj.AppActivate("21064")
WScript.Sleep(3000)
obj.SendKeys("{F5}")
Any suggestions? Any ideas on how to loop this? I guess to exit the loop I can either have an amount of time pass or have it count the number of times it performs. I also wouldnt mind have an "endless loop" that I can manually exit based on some keyboard command.
Thanks,
Rob