Orbiter Posted July 8, 2011 Posted July 8, 2011 (edited) For $i2 = 1 To $Height For $i = 0 To $Width Mousemove($StartX, $StartY, 1) $Mposition = MouseGetPos() $StartX += $Distance Sleep(1) Next $StartX = $WinPos[0] + 41 $StartX = $StartX - $Width $StartY += $Distance Next How can I get MouseGetPos() to put it's result like this (example): $Mposition[720][0] <--- Here, and $Mposition[720][1] <--- Here Edited July 8, 2011 by Orbiter
PsaltyDS Posted July 8, 2011 Posted July 8, 2011 One way would be: $Mposition[720][0] = MouseGetPos(0) $Mposition[720][1] = MouseGetPos(1) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now