1) Moving mouse randomly and continuously between 2 points, during which
2) the mouse performs randomized drags/releases.
I can do those tasks seperately, but am having trouble performing them at the same time. I probably can do it with 2 seperate scripts running simultaneously, but can anyone here please give me some hint on how to do it in 1 script?
Here are the two loops:
Loop 1, random movements:
Loop
{
;get a random point where the mouse moves to
Random, Dest, MinX, MaxX
;Move the mouse to there, with slow (100) speed
MouseMove, Dest, MouseY, 100
}
Loop 2, random draggings
Click down
Loop
{
Random, ClickRelease, 0, 99
If (ClickRelease > 90)
{
Click up
Sleep 200
Click down
}
else
{
sleep 200
}
}
Click up




