Trying to write a simple program that just moves the mouse to a spot holds down the left click and then drags an item to another place, and let's go. It worked for one iteration of what I'm doing but now for some reason it never lets go of the left click. So when it tries to grab the next item, it then tries and moves the first item into the second.
Code: Select all
//Move Items
Let>r=1
While>r<3
MouseMove>2100,978
LDown
Wait>.5
MouseMove>2800,275
LUp
Wait>2
MouseMove>2100,992
LDown
Wait>.5
MouseMove>2800,275
LUp
Wait>2
If>r=1
MouseMove>2100,1009
LDown
Else
MouseMove>2100,1027
LDown
Endif
Wait>.5
MouseMove>2800,425
LUp
Wait>2
MouseMove>2225,200
LClick
Wait>1.5
Press Down
Let>r=r+1
EndWhile
Code: Select all
//Move Items
Let>r=1
While>r<3
MouseMove>2100,978
LDown
Wait>.5
MouseMove>2800,275
LDown
LUp
Wait>2
MouseMove>2100,992
LDown
Wait>.5
MouseMove>2800,275
LDown
LUp
Wait>2
If>r=1
MouseMove>2100,1009
LDown
Else
MouseMove>2100,1027
LDown
Endif
Wait>.5
MouseMove>2800,425
LUp
LClick
Wait>2
MouseMove>2225,200
LClick
Wait>1.5
Press Down
Let>r=r+1
EndWhile