Hi everyone, im struggling with this issue where im trying to capture a mouse keypress, the application 'key tweak' detects the 2 keys, and output these 2 scancodes: 25 and 57421. Looking at the forum and help file, the best i could come up with is this $pStub_MouseProc = DllCallbackRegister("_Mouse_Proc", "int", "int;ptr;ptr")
$hHookMouse = _WinAPI_SetWindowsHookEx($WH_MOUSE_LL, DllCallbackGetPtr($pStub_MouseProc), _WinAPI_GetModuleHandle(0), 0)
ConsoleWrite('$hHookMouse - '& $hHookMouse &' - '&@MSEC&@CRLF)But i don't understand it fully, and sure made mistakes, now im out of ideas. Came for your wisdom and guidance.