need imacro help

Joined
Mar 31, 2011
Messages
25
Reaction score
28
my dear friends,
i am very new to imacro. i am trying to run 2 im's. i want to run I st im one time and second im for 20 times. i am trying with java script. but not working. please any one help me. advance thanks to all.
 
my dear friends,
i am very new to imacro. i am trying to run 2 im's. i want to run I st im one time and second im for 20 times. i am trying with java script. but not working. please any one help me. advance thanks to all.
 
Try something like this on your javascript.

Code:
iimPlay(firstmacro.iim);

for(int x=0; x<20; x++)
{
    iimPlay(secondmacro.iim);
}
 
Back
Top