[python-win32] HookMessage failure?

2005-04-06 Thread b6y9eq902
Hey, I'm currently trying to detect all clicks to a particular windows application, using win32gui and win32ui. Right now I'm using EnumWindows() to find the hwnd I want via window title, and then CreateWindowFromHandle(hwnd) to get a PyCWnd object that represents the window. I then attempt

Re: [python-win32] HookMessage failure?

2005-04-06 Thread Daniel F
Hey Mark, the correct mesage to hook is win32con.WM_LBUTTONDOWN try it with this one, and see if that works. -d On 7 Apr 2005 02:15:41 -, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hey, I'm currently trying to detect all clicks to a particular windows application, using win32gui and