How To Make iMacros Loop Series Of Script!

ThenNowAlways

BANNED
Joined
Jul 23, 2013
Messages
77
Reaction score
10
I need to Have this loop 30 times and then continue with the rest of the Macro. Anyone willing to help me? I have a paypal account :)

SET !TIMEOUT_STEP 1
SET !ERRORIGNORE YES
TAB T=1

***LOOP 30 times***
TAG POS=1 TYPE=SPAN ATTR=TXT:Follow
TAG POS=4 TYPE=SPAN ATTR=TXT:Follow
TAG POS=7 TYPE=SPAN ATTR=TXT:Follow
TAG POS=10 TYPE=SPAN ATTR=TXT:Follow
TAG POS=13 TYPE=SPAN ATTR=TXT:Follow
TAG POS=16 TYPE=SPAN ATTR=TXT:Follow
TAG POS=19 TYPE=SPAN ATTR=TXT:Follow
TAG POS=22 TYPE=SPAN ATTR=TXT:Follow
TAG POS=25 TYPE=SPAN ATTR=TXT:Follow
TAG POS=28 TYPE=SPAN ATTR=TXT:Follow
TAG POS=1 TYPE=A ATTR=TXT:Next<SP>Page
***LOOP 30 Times***

URL GOTO=http://turntupapparel.tumblr.com
CLICK X=16 Y=70


***LOOP 30 times***
TAG POS=1 TYPE=SPAN ATTR=TXT:Follow
TAG POS=4 TYPE=SPAN ATTR=TXT:Follow
TAG POS=7 TYPE=SPAN ATTR=TXT:Follow
TAG POS=10 TYPE=SPAN ATTR=TXT:Follow
TAG POS=13 TYPE=SPAN ATTR=TXT:Follow
TAG POS=16 TYPE=SPAN ATTR=TXT:Follow
TAG POS=19 TYPE=SPAN ATTR=TXT:Follow
TAG POS=22 TYPE=SPAN ATTR=TXT:Follow
TAG POS=25 TYPE=SPAN ATTR=TXT:Follow
TAG POS=28 TYPE=SPAN ATTR=TXT:Follow
TAG POS=1 TYPE=A ATTR=TXT:Next<SP>Page
***LOOP 30 Times***

URL GOTO=http://turntupapparel.tumblr.com
CLICK X=15 Y=110
 
you will have to do it through javascript.

simple way to do it is just copy, the code/macro 30 times and then then put the rest of your code. easy should have it done in less then a minute.
 
You have to make a javascript file (.js)
Then different macro files (.iim) which execute the code you want.

If you want to execute the first code 30 times, then make a .iim file with that code and call it with your .js file with: iimPlay("yourmacro//macro")
If you want to loop that part 30 times, just make a for loop:

for (var i=0;i<=30;i++) {
iimPlay("yourmacro//macro");
}

If you want to execute the URLGOTO command, make a macro with that code, and also call it in your .js macro:

iimPlay("GotoURLMacro");


Then execute the other code 30 times:

for (var i=0;i<=30;i++) {
iimPlay("yourmacro//secondmacro");
}

and so on..
 
First i would say set the useragent, it will be much easier to handle the website. No frames, no scripts :D
 
Hey do you have a script for the new Webstagram ?
They updated the site and my script no longer works I would really appreciate it.
 
Back
Top