Any good YouLikeHits iMacros? If so could someone please post them.

soipelez

Newbie
Joined
May 16, 2013
Messages
6
Reaction score
0
Title says it all guys, I found a really good one, it stopped working for me the other day, it presses the green "like this video" button on YLH's website but it then gets to the youtube page and goes "Loading (60)" so yeah, dunno if youtube patched it or YLH patched it :(, the script is :
Code:
VERSION BUILD=7601105 RECORDER=FXSET !ERRORIGNORE YES
TAB T=1
TAG POS=1 TYPE=A ATTR=TXT:Like<SP>Video
TAB T=2
FRAME F=0
WAIT SECONDS=5
TAG POS=1 TYPE=BUTTON ATTR=ID:watch-like
WAIT SECONDS=5
TAB T=2
TAB T=1
TAB CLOSEALLOTHERS



WAIT SECONDS=8


I think that code was written by a user here named "Fernando Torres"
Thanks in advance guys.
 
Tried it, first rule of the Internet GIYF.
I'll try again though (:
 
There doesn't seem to be anything wrong with it other than the fact that there is an unnecessary wait time. If the button within the video page is giving you an issue, you will have to see what the code for it is. For example:

TAG POS=1 TYPE=BUTTON ATTR=ID:watch-like

is your code for the "Like" button on the Youtube page itself. Since your button for whatever reason is different, you will need to record it yourself. So go to any Youtube video and press the record button with iMacros. Click the "Like" button, and you should see a line of code pop up in the client log. Stop recording, and it should pop open the script you just recorded. Copy the one line of code that is corresponding to the "Like" button and replace it with your code.

But that code isn't very efficient, so I'll help you out and give you a different one with the same function, just a tad few tweaks to make it faster.

VERSION BUILD=7601105 RECORDER=FX
SET !ERRORIGNORE YES
TAB T=1
WAIT SECONDS=3
SET !TIMEOUT_STEP 10
TAG POS=1 TYPE=A ATTR=TXT:Like<SP>Video
TAB T=2
WAIT SECONDS=3
FRAME F=0
TAG POS=1 TYPE=BUTTON ATTR=ID:watch-like
WAIT SECONDS=3
TAB T=2
TAB T=1
TAB CLOSEALLOTHERS
 
It seems to say "loading (60)" when I get to line
Code:
TAB T=2
any ideas?
 
Actually, I decided to take RushingWind's advice and write my own I tried to make a subscriber one, it all works till I get to the "I've subscribed" button on YLH's website.
Sorry for being a pain but could someone take a look.
Code:
VERSION BUILD=7500718 RECORDER=FXSET !ERRORIGNORE YES
TAB T=1
TAG POS=1 TYPE=FONT ATTR=TXT:Subscribe<SP>to<SP>*
WAIT SECONDS=2
TAB T=2
FRAME F=0
TAG POS=1 TYPE=SPAN ATTR=TXT:Subscribe
TAB T=1
TAB T=2
TAB CLOSE
WAIT SECONDS=2
TAG POS=1 TYPE=BUTTON ATTR=TXT:I've<SP>Subscribed!
 
Back
Top