Jamie1414 Posted February 23, 2008 Posted February 23, 2008 i used to have a program that displayed where my mouse cords were to make it so much easier to know where im clicking, could any1 give me that code or sumtin? thanks in advance
covaks Posted February 23, 2008 Posted February 23, 2008 Uhm... AutoIT comes with the AutoIT Window Info tool... which does exactly that...
Vhaerun Posted February 23, 2008 Posted February 23, 2008 In the worst case , use something like this : While 1 $position=MouseGetPos() MsgBox(0,"Coords",$position[0] & " " & $position[1]); WEnd
weaponx Posted February 23, 2008 Posted February 23, 2008 In the worst case , use something like this : While 1 $position=MouseGetPos() MsgBox(0,"Coords",$position[0] & " " & $position[1]); WEnd Using this code you will only ever get the coordinates of the OK button on the messagebox...better to use a small gui and update labels with the position.
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