- From: Maciej Stachowiak <mjs@apple.com>
- Date: Tue, 2 May 2006 15:02:04 -0700
- To: Public Web API <public-webapi@w3.org>
Received on Tuesday, 2 May 2006 22:02:11 UTC
The function WindowsKeyCodeForKeyEvent in this file maps from Mac OS
X internal key codes to windows keycodes for use in event.keyCode.
Here's an example entry:
// VK_LEFT (25) LEFT ARROW key
case NSLeftArrowFunctionKey: return 0x25;
The value is hex 25, the Window VK constant is VK_LEFT.
Regards, Maciej
Received on Tuesday, 2 May 2006 22:02:11 UTC