Instagram + Imacros + Addmefast

miracle2207

Registered Member
Joined
Jul 3, 2015
Messages
64
Reaction score
8
Hello

Please move this topic if it is wrong place.

I have a problem with following on instagram. It works, it looks like it clicks on Follow button but without result.

Script:

Code:
SET !ERRORIGNORE YES
SET !LOOP -9999999
SET !TIMEOUT_TAG 1
SET !TIMEOUT_STEP 1
URL GOTO=http://addmefast.com/free_points/instagram.html
SET !TIMEOUT_STEP 10
TAG POS=1 TYPE=DIV ATTR=TXT:Follow
TAB T=2
WAIT SECONDS=4
SET !TIMEOUT_STEP 5
TAG POS=1 TYPE=SPAN ATTR=TXT:Follow


Edit:

Follow button looks like this:
c52efb7618.jpg
 
Switch the recording mode to event recording or to x, y position, record a new macro and see if that helps.
Although i'm not doing ig anymore, but i believe there are working codes for AMF here, if you look around.

Also maybe add random wait times to the code, something like this:
HTML:
SET !ERRORIGNORE YES
SET !LOOP -9999999
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*4 + 8); randomNumber;")
SET !TIMEOUT_TAG 1
SET !TIMEOUT_STEP 1
URL GOTO=http://addmefast.com/free_points/instagram.html
SET !TIMEOUT_STEP 10
TAG POS=1 TYPE=DIV ATTR=TXT:Follow
TAB T=2
WAIT SECONDS={{!VAR1}}
SET !TIMEOUT_STEP 5
TAG POS=1 TYPE=SPAN ATTR=TXT:Follow

What does this line do exactly?
HTML:
SET !LOOP -9999999
Does it allow infinite looping because of the neg sign?
 
Switch the recording mode to event recording or to x, y position, record a new macro and see if that helps.
Although i'm not doing ig anymore, but i believe there are working codes for AMF here, if you look around.

Also maybe add random wait times to the code, something like this:
HTML:
SET !ERRORIGNORE YES
SET !LOOP -9999999
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*4 + 8); randomNumber;")
SET !TIMEOUT_TAG 1
SET !TIMEOUT_STEP 1
URL GOTO=http://addmefast.com/free_points/instagram.html
SET !TIMEOUT_STEP 10
TAG POS=1 TYPE=DIV ATTR=TXT:Follow
TAB T=2
WAIT SECONDS={{!VAR1}}
SET !TIMEOUT_STEP 5
TAG POS=1 TYPE=SPAN ATTR=TXT:Follow

What does this line do exactly?
HTML:
SET !LOOP -9999999
Does it allow infinite looping because of the neg sign?
Tried with your code but it still looks like before. Also tried with event/x,y recording options, still no results. Idk what's wrong.
Still need help, waiting for other replies.
 
Tried with your code but it still looks like before. Also tried with event/x,y recording options, still no results. Idk what's wrong.
Still need help, waiting for other replies.
Yea, using my code won't fix the issue, i just added random wait times. :)

Try it with different browsers (FF, Chrome, IE), disable your addons which may interfere with iMacros, especially ad blocking addons. Try the standalone iMacros browser. Check if you have the latest version of Java (and flash) installed. But maybe AMF is blocking iMacros somehow.

Anyway, if none of this help, i guess you'll need to wait for someone more well-versed than me.
 
Yea, using my code won't fix the issue, i just added random wait times. :)

Try it with different browsers (FF, Chrome, IE), disable your addons which may interfere with iMacros, especially ad blocking addons. Try the standalone iMacros browser. Check if you have the latest version of Java (and flash) installed. But maybe AMF is blocking iMacros somehow.

Anyway, if none of this help, i guess you'll need to wait for someone more well-versed than me.
Okay, finally fixed it!

Here is a fix:
TAG POS=1 TYPE=SPAN ATTR=TXT:Follow

change SPAN to BUTTON

TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow


Full Script if someone need it!:

Code:
SET !ERRORIGNORE YES
SET !LOOP -9999999
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*4 + 8); randomNumber;")
SET !TIMEOUT_TAG 1
SET !TIMEOUT_STEP 1
URL GOTO=http://addmefast.com/free_points/instagram.html
SET !TIMEOUT_STEP 5
TAG POS=1 TYPE=DIV ATTR=TXT:Follow
TAB T=2
WAIT SECONDS=3
SET !TIMEOUT_STEP 5
TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS=3
TAB T=1
TAB CLOSEALLOTHERS
WAIT SECONDS=3


Thanks for help :)
 
Back
Top