Im trying to see if the mouse is over my GUI - Can this be done in an easer way?. Please Help
$ParentWin_Width = 450
$ParentWin_Height = 700
$ParentWin_Left = ((@DesktopWidth - $ParentWin_Width) / 2)
$Top = 25
Global $ParentWin = GUICreate("Example", 450, $ParentWin_Height, $ParentWin_Left, $Top)
GUISetState(@SW_SHOW, $ParentWin)
While 1
Sleep(2000)
$pos = MouseGetPos()
If $pos[0] > $ParentWin_Left Then
If $pos[0] < $ParentWin_Left + $ParentWin_Width Then
If $pos[1] > $Top Th