Jump to content

Recommended Posts

Posted (edited)

Code at the moment basicly gets the handle of what ever window is at the mouse.

Local $tStruct = DllStructCreate($tagPOINT)

$SystemMousePosition=MouseGetPos()
DllStructSetData($tStruct, "x", $SystemMousePosition[0])
DllStructSetData($tStruct, "y", $SystemMousePosition[1])
$SystemMouseHandle = _WinAPI_WindowFromPoint($tStruct)

What i would like to do now is something like

If WingetClass($SystemMouseHandle) = "[Class:#32768]" then

consolewrite("A menu has been hovered")

endif

Does anyone have any idea how i could do this ?

Edited by IanN1990

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...