Kripp4 0 Posted April 15, 2005 Are there any way to get the cords of the mouse when i click? Like when i have it on the center of the screen then it saves the cords... Share this post Link to post Share on other sites
zcoacoaz 0 Posted April 16, 2005 (edited) Yes, run this script GuiCreate ( "Click recognizer thingy-bobber", @DesktopWidth, @DesktopHeight, 0, 0 ) While 1 Sleep ( 10 ) $status = GUIGetCursorInfo ( ) If $status[2] = 1 Then MsgBox ( 0, "Click detected", "You clicked at " & $status[0] & "x " & $status[1] & "y!" ) WEnd Edited April 16, 2005 by Xenogis [font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font] Share this post Link to post Share on other sites