How Can I Set Up A 24 Hours Operation With Imacros?
How can I set up a 24 hours a day, 7 days a week (non-stop) operation with iMacros? I Found that code but i can't adapt it my macro. i don't know use visual basic but i setup vbs
Solution 1:
I don't know about VB solution but JS solution is following.
Place
SET !ERRORIGNORE YES
command in macro andSET !TIMEOUT_MACRO 120
(you can change the time) inside the macro. Then when you call the macro in JS you do it like this.iimPlay(macro, 110)
Make sure that the time is less then macro timeout by few seconds. That way macro will restart after each time and script can work a lot of time.
Solution 2:
//this starts firefox
start /d"C:\Program Files\Mozilla Firefox" firefox.exe /AUTO
//this kills firefox process
pskill firefox.exe
//this command is one version of wait 10 seconds. You can change number 10 into some other for script to wait more then 10 seconds
ping -n 10 127.0.0.1
On this link you have examples on how to run iMacros file from bookmarks. So you have couple of examples and you can use them.
http://wiki.imacros.net/iMacros_for_Firefox#Command_Line_Support
Post a Comment for "How Can I Set Up A 24 Hours Operation With Imacros?"