I've made good progress. It now works with a fixed amount of wait time. Here is my macro that works (i'm typing from memory as I don't have access the the exact code right now, but it is pretty simple):
Code: Select all
Let>x=0
Repeat>x
LClick
Wait>0.20
Send>a
Wait>0.30
Let>x=x+1
Until>x=200
Code: Select all
Let>x=0
Repeat>x
LClick
Random>101,RandATime
Let>WaitTimeA = RandATime / 2000 + 0.15
Wait>%WaitTimeA%
Send>a
Random>101,RandClickTime
Let>WaitTimeClick = RandClickTime / 2000 + 0.25
Wait>%WaitTimeClick%
Let>x=x+1
Until>x=200
When I ran the code, it does the first left click, but does not type the letter "a". Not sure why Any help would be appreciated. I won't be able to test the code untilt his evening EST. Thanks.