Anita Whitney wrote:
> A window comes up saying "hotkeyapp has stopped working." How do I
> get in there to "move the RegisterHotKey line to within the thread's
> run method," etc.? Im trying to do this myself and not pay Acer tech
> support. Thanks, Anita Whitney
Is this a wxPython application t
Thanks Tim, that resolved it.
--
http://mail.python.org/mailman/listinfo/python-list
One obvious point is that, according to:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceui40/html/cerefWM_HOTKEY.asp
the WM_HOTKEY message is posted to the queue *of the thread which
registered the hotkey*. I haven't yet tried it myself to see, but in
your example the main th
And just to confirm, it does in fact work. If you move the
RegisterHotKey line to within the thread's run method, the thread's
message loop picks up the hotkey press.
--
http://mail.python.org/mailman/listinfo/python-list