iMacros/Twitter help pls.

vanafindiel

Newbie
Joined
Jul 26, 2012
Messages
3
Reaction score
0
Hey guys.
So I need an auto-fav bot for Twitter.
I found a pretty reliable looking one and so I tried it out in iMacros.
The only trouble is, it's numbered. Like, it only favourites tweets from 1 to however many times you're willing to click while you're recording.
Is there any way that I can just make it favourite continuously down the list or do they have to be numbered?
This is the script:


TAG POS=1 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=2 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=3 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=4 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=5 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=6 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=7 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=8 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=9 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=10 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=11 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=12 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=13 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=13 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=14 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=15 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=16 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=17 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=18 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=19 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=20 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=21 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=22 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=23 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=24 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=25 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=26 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=27 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=28 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=29 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=28 TYPE=SPAN ATTR=TXT:Favorite
TAG POS=29 TYPE=SPAN ATTR=TXT:Favorite


See what I mean?
How it goes, tag pos =1 and so on and so forth.
How do I make it so it will just favourite the next tweet and the next tweet without having that number?
P..S. I'm working off of a Mac and I had been using Apple Script Editor to go [j+f] down the list. J to scroll, f to favourite. But they've blocked that in the tags or something now, so I need other options.


Someone please help me out with this iMacros thing, or at least suggest another alternative.
Sorry I'm such a noob, haha.


-Vana <3
 
You can use the Loop statement here.

VERSION BUILD=VERSIONNUMBERHERE RECORDER=FX
SET !TIMEOUT_STEP 0
SET !TIMEOUT_PAGE 2
SET !ERRORIGNORE YES
SET !LOOP 1
TAG POS={{!LOOP}} TYPE=SPAN ATTR=TXT:Favorite

Then you can set the Play Loop value to how many favorites you want to do. It will go through and favorite that many of them.

Hope it helps. :)
 
then @R4ZOrAO7
is right ,
then value goes on increase per loop :D
then make a loop :)
 
That works perfectly, R4Z0rA07. Cheers!The only problem left is that when I set it to start favouriting, the page moves up instead of down. It was working fine when I first started using it, but now it's going backward!For example:1 ^2 |3 |4 |Instead of going down a bit with every tweet it favourites, it goes up! Does that make sense?How do I fix that?
 
That works perfectly, R4Z0rA07. Cheers!The only problem left is that when I set it to start favouriting, the page moves up instead of down. It was working fine when I first started using it, but now it's going backward!For example:1 ^2 |3 |4 |Instead of going down a bit with every tweet it favourites, it goes up! Does that make sense?How do I fix that?

Try using

URL GOTO=javascript:window.scrollBy(0,20000)
This will scroll the page down.
 
All right, so the scrolling thing didn't work but that's okayLast question, I swear. I'm sorry, I'm so bad with this stuff.I need to do the same thing for tumblr, like the variable loop thing so it's not just counting specifics. This is how the script looks right now.TAG POS=1 TYPE=A ATTR=ID:like_button_34739962660TAG POS=1 TYPE=A ATTR=ID:like_button_34739945905TAG POS=1 TYPE=A ATTR=ID:like_button_34739937068TAG POS=1 TYPE=A ATTR=ID:like_button_34739936077how do I make it so it'll just go down the post and like all of them? thanks so much again
 
Try using

URL GOTO=javascript:window.scrollBy(0,20000)
This will scroll the page down.

can you give more on this code and post and specific example as to where the URL is to be inserted into the code and how it should work?
 
Back
Top