Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I use my own loop with pyhook instead of pumpMessages()?

Tags:

python

pyhook

I'm trying to use pyhooks to detect mouse clicks anywhere on screen. The problem is that I can only get it to work with PumpMessages(). I'd like it operate inside of a while loop that I've constructed. Is there a way to accomplish this/why does it need pumpMessages?

def onclick(event):
    print 'Mouse click!'
    return True


hm = pyHook.HookManager()

hm.MouseLeftDown = onclick

hm.HookMouse()
pythoncom.PumpMessages()
hm.UnhookMouse()

The above is the only way I can get it to run.

I'm trying to accomplish something like this:

sTime = time.time()

def onclick(event):
    global sTime
    print 'Time between clicks equals: %i' % time.time() - stime
    sTime = time.time()
    return True

hm.MouseLeftDown = OnClick

while True:

    hm.HookMouse()

EDIT: I am not a smart man. There is no need for a while loop in the scenario..

Sigh..

like image 900
Zack Avatar asked Apr 04 '12 03:04

Zack


2 Answers

Just for future reference, you can use pythoncom.PumpWaitingMessages() inside the while loop, since it does not lock the execution. Something like this:

while True:
    # your code here
    pythoncom.PumpWaitingMessages()
like image 160
Matheus Portela Avatar answered Nov 09 '22 19:11

Matheus Portela


From the pyhook tutorial:

Any application that wishes to receive notifications of global input events must have a Windows message pump.

However, this shouldn't necessarily prevent your code from working. Why don't you post what you are trying to do, and we can look for a way to use the message pump in the context of your code.

One way you might be able to solve your problem is through PostQuitMessages(original solution here)

import ctypes
ctypes.windll.user32.PostQuitMessage(0)
like image 38
Nolen Royalty Avatar answered Nov 09 '22 20:11

Nolen Royalty