javascript loop imacros?

Masterptc

Regular Member
Joined
Aug 9, 2011
Messages
421
Reaction score
603
Im trying to loop 4 imacros scripts with javascript 5 times. What am i doing wrong, it is only looping imacros 2 and 4 and ignoring the others.

Code:
for (i=0;i<=5;i++){
iimPlay("Other stuff/Shipping-Input.iim");
iimPlay("Other stuff/Shipping-Input2.iim");
iimPlay("Other stuff/Shipping-Input3.iim");
iimPlay("Other stuff/Shipping-Input4.iim");
}
 
check if the files are really in place
check if there is no syntax errors in them
try to start them with some delay between each other
 
Please check the file location if it really exist. maybe that causes the problem.
 
Back
Top