BALA Posted December 12, 2006 Share Posted December 12, 2006 After some posting around the forum here, I've gotten a way to record the position of the mouse when the user clicks. What I need some help now is how I can "replay" the mouse clicks. I was thinking of using a Do While loop, but when it reaches the last recorded position, I want it to repeat back to the first, starting the process again until the user presses a certain key. So does anyone know how I would do that? This is the code thus far: CODE#include <Misc.au3> Dim $Position, $i = 0, $Record[1][2] While 1 If _IsPressed("01") Then $Position = MouseGetPos() ReDim $Record[$i + 1][2] $Record[$i][0] = $Position[0] $Record[$i][1] = $position[1] consoleWrite($Record[$i][0] & @LF & $Record[$i][ 1] & @LF) Msgbox(0,"Mouse Position","x = "&$Record[$i][0] & @LF & "y = "& $Record[$i][1] & @LF) $i += 1 EndIf sleep(10) WEnd This is another slightly different version: CODE#include <Array.au3> #include <Misc.au3> Dim $Position, $i = 0, $Record[1] While 1 If _IsPressed("01") Then $Position = MouseGetPos() $x = $Position[0] $y = $position[1] ReDim $Record[$i + 2] $Record[$i] = $x $Record[$i + 1] = $y $i += 2 _ArrayDisplay($Record, "") EndIf sleep(10) WEnd MsgBox (0, "", $x & $y ) [font="Comic Sans MS"]BA-LA[/font]http://ba-la.110mb.comJoin my community, CLICK HEREAlternative links to my site:http://www.ba-la.tkhttp://www.ba-la.co.nrContact me if you would like to help with some of my projects: joeythepirate@gmail.com Link to comment Share on other sites More sharing options...
Googler24022 Posted December 12, 2006 Share Posted December 12, 2006 (edited) Look up hotkey in the help file. You would then be able to create a "pause" key which when pressed would pause the program until the button is pressed again. Edited January 29, 2012 by Googler24022 Link to comment Share on other sites More sharing options...
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