Need simple iMacros script

wriper

Supreme Member
Joined
Jul 31, 2011
Messages
1,204
Reaction score
319
Hi guys i just need script which will click on one link again and again. I know there is a record option but i want just click on link with dynamic text .
 
well then, where's the problem?

record the macro, save it and hit 'Play (Loop)', of course just after you inserted a number which is bug enough into the bracket
 
But i need clicking on dynamic text . If choose record mode it will click just on the same text but text is dynamic so its changing every time you click on it.
 
Can you explain me how please? I am not good at scripting :) Thanks
 
But i need clicking on dynamic text . If choose record mode it will click just on the same text but text is dynamic so its changing every time you click on it.


Just Use Wildcards , Say You Want To Click A Link When Recording And It Looks Like This


Code:
TAG POS=1 TYPE=A ATTR=TXT:http://www.google.com/verification=123737
Again When You Record It It Comes To Be
Code:
http://www.google.com/verification=1767667
Now We Know That Part After Verification= is Changing So Just Use a Wildcard * After That And It Will Select the Dynamic Link Every time

So , The New Link In Imacros Will Be


Code:
TAG POS=1 TYPE=A ATTR=TXT:http://www.google.com/verification=*
More On Wildcards
Code:
http://wiki.imacros.net/Form_Filling#Wildcards
 
Last edited:
I am really thankful guys but i need script which will click on link and these link or lets say links are changing every time . For example i go to page where is link to google and there is written " Google " when i refresh page there is another link to Yahoo and there is written " Yahoo" . So different links and differnet text.
Thank for all your advices but please help me one more time I will give rep and thanks :)
 
I am really thankful guys but i need script which will click on link and these link or lets say links are changing every time . For example i go to page where is link to google and there is written " Google " when i refresh page there is another link to Yahoo and there is written " Yahoo" . So different links and differnet text.
Thank for all your advices but please help me one more time I will give rep and thanks :)


Anything Common In Them ? Just Use Common Thing Or Text :)

Or
Code:
TAG POS=1 TYPE=A ATTR=TXT:http://www*

That Will Do , If Not PM Me Page Ill Help You;)
 
Back
Top