You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to wxpytho...@googlegroups.com
Doesn't work.
Cody
unread,
Aug 29, 2012, 8:50:03 AM8/29/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to wxpytho...@googlegroups.com
On Wed, Aug 29, 2012 at 6:45 AM, Ram Rachum <r...@rachum.com> wrote:
> Doesn't work.
>
What doesn't work?
The ord function certianly returns the character codes of those characters.
If thats not what your looking for then I don't know what "Does anyone
have a clue what their codes are?" means and you may want to
elaborate further.
Ram Rachum
unread,
Aug 29, 2012, 8:52:53 AM8/29/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to wxpytho...@googlegroups.com
Sorry, I meant codes in the context of setting a global hotkey. i.e., the codes that I need to pass to RegisterHotKey.
Cody
unread,
Aug 29, 2012, 9:20:32 AM8/29/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to wxpytho...@googlegroups.com
On Wed, Aug 29, 2012 at 7:52 AM, Ram Rachum <r...@rachum.com> wrote:
> Sorry, I meant codes in the context of setting a global hotkey. i.e., the
> codes that I need to pass to RegisterHotKey.
>
Did you check the remarks section of that documentation in your link ;-)
Cody
Andrea Gavana
unread,
Aug 29, 2012, 9:52:36 AM8/29/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to wxpytho...@googlegroups.com
Note Use EVT_HOTKEY(hotkeyId, fnc) in the event table to capture the
event. This function is currently only implemented under Windows. It
is used in the Windows CE port for detecting hardware button presses.
"""
From what I understand, it appears you can register a hotkey on any
platform but you can handle the event only on Windows. Very funny (and
useful) indeed :-)
Ram Rachum
unread,
Aug 29, 2012, 12:02:49 PM8/29/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to wxpytho...@googlegroups.com
Thanks everybody. Andrea, the codes you supplied work great.