iMacros Question

Kontroller

Newbie
Joined
Jul 5, 2011
Messages
29
Reaction score
0
I'd firstly like to say thank you for all the help so BHW, I've learned a lot and I've started to make money, be it small amounts it is nonetheless and I will soon be sharing my ideas and methods, once I feel they are worth contributing.

I've got another iMacros question. I want to click everything with the text "House". I use the following code either with a loop or by copying and pasting the following line :
Code:
TAG POS=1 TYPE=A ATTR=TXT:House
However I find that instead of first clicking the first "House" then moving onto to the remaining ones, it does the same one everytime.

How can I make it hit the remaining ones in turn?

Thanks
 
Its been a long time since I used iMacros, but I am fairly positive it is because of the POS attribute. In your code it has POS=1 which would be the first time it says House. If you want it to click the second instance of house you would have.

TAG POS=2 TYPE=A ATTR=TXT:House
 
Are all 3 anchors "House"?

Edit: where did 3 come from?
you can also change the click mode to x/y positions, that is if the links are static.
 
Last edited:
Back
Top