Re: using message loop for hotkey capturing

2012-10-16 Thread bagratte
hi all, i am a complete newbie in windows programming and have come across this problem. i wanted a windows systray application which would seat in the notification are, would have a tiny popup menu and would also respond to a global hotkey. i've assembled something out of the demos in pywin32

Re: using message loop for hotkey capturing

2010-03-24 Thread Alex Hall
Thanks, it seems to be working for now... Hopefully that trend continues! On 3/24/10, Tim Golden wrote: > On 23/03/2010 17:01, Alex Hall wrote: >> Hi all, but mainly Tim Golden: >> Tim, I am using your wonderful message loop for keyboard input, the >> one on your site that you pointed me to a few

Re: using message loop for hotkey capturing

2010-03-24 Thread Tim Golden
On 23/03/2010 17:01, Alex Hall wrote: Hi all, but mainly Tim Golden: Tim, I am using your wonderful message loop for keyboard input, the one on your site that you pointed me to a few months ago. It has been working perfectly as long as I had only one dictionary of keys mapping to one dictionary o

Re: using message loop for hotkey capturing

2010-03-23 Thread MRAB
Alex Hall wrote: On 3/23/10, MRAB wrote: [snip] Incidentally, you might want to change: if(not action_to_take): to: if action_to_take is None: in case any of the values happen to be 0 (if not now, then possibly at some time in the future). Sorry, could you explain why you sugges

Re: using message loop for hotkey capturing

2010-03-23 Thread Alex Hall
On 3/23/10, MRAB wrote: > Alex Hall wrote: >> Hi all, but mainly Tim Golden: >> Tim, I am using your wonderful message loop for keyboard input, the >> one on your site that you pointed me to a few months ago. It has been >> working perfectly as long as I had only one dictionary of keys mapping >>

Re: using message loop for hotkey capturing

2010-03-23 Thread MRAB
Alex Hall wrote: Hi all, but mainly Tim Golden: Tim, I am using your wonderful message loop for keyboard input, the one on your site that you pointed me to a few months ago. It has been working perfectly as long as I had only one dictionary of keys mapping to one dictionary of functions, but now

Re: using message loop for hotkey capturing

2010-03-23 Thread Alex Hall
Sorry about that, it is fixed now. On 3/23/10, Tim Golden wrote: > On 23/03/2010 17:01, Alex Hall wrote: >> Hi all, but mainly Tim Golden: >> Tim, I am using your wonderful message loop for keyboard input, the >> one on your site that you pointed me to a few months ago. It has been >> working per

Re: using message loop for hotkey capturing

2010-03-23 Thread Tim Golden
On 23/03/2010 17:01, Alex Hall wrote: Hi all, but mainly Tim Golden: Tim, I am using your wonderful message loop for keyboard input, the one on your site that you pointed me to a few months ago. It has been working perfectly as long as I had only one dictionary of keys mapping to one dictionary o

using message loop for hotkey capturing

2010-03-23 Thread Alex Hall
Hi all, but mainly Tim Golden: Tim, I am using your wonderful message loop for keyboard input, the one on your site that you pointed me to a few months ago. It has been working perfectly as long as I had only one dictionary of keys mapping to one dictionary of functions, but now I want two of each.