I'm sure this is extremely simple. I have recorded some mouse clicks and I just need the entire sequence to repeat 10 times. Can you please let me know what I need to add to the following script?
Thank you
//Recorded Events
CapsOff
MouseMove>909,790
Wait>.5
LClick
Wait>.5
MouseMove>888,591
Wait>.5
LClick
MouseMove>885,570
Wait>.1
LClick
Wait>0.2
Repeat 10 times
Moderators: Dorian (MJT support), JRL
Hope this is clear. Feel free to ask more questions.
Code: Select all
//You need a counter to count the number of times you've looped
Let>vCounter=0
//You need a method to loop.
//One easy method is the Repeat/Until Function
Repeat>vCounter
//You need to increment your counter
Let>vCounter=%vCounter%+1
///Stuff you want to do 10 times
//Repeat until a variable = a value
Until>vCounter=10