Guest User

Untitled

a guest
Apr 11th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.27 KB | None | 0 0
  1. Func _mause_position($maus_y,$maus_x,$maus_width,$maus_height)
  2.     $maus = GUIGetCursorInfo()
  3.     If $maus[0] >= $maus_y And $maus[0] <= $maus_y + $maus_width And $maus[1] >= $maus_x And $maus[1] <= $maus_x + $maus_height Then
  4.         Return True
  5.     Else
  6.         Return False
  7.         EndIf
  8. EndFunc
Add Comment
Please, Sign In to add comment