Jump to content

Recommended Posts

Posted

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

Posted

In the worst case , use something like this :

While 1
      $position=MouseGetPos()
      MsgBox(0,"Coords",$position[0] & " " & $position[1]);
WEnd
Posted

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...