Function from Safari that has info about Windows keyCodes used in key events

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