Skip to content

Instantly share code, notes, and snippets.

@abatkin
Created April 4, 2012 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abatkin/2304926 to your computer and use it in GitHub Desktop.
Save abatkin/2304926 to your computer and use it in GitHub Desktop.
IntelliType Hacking
In the registry:
[HKEY_CURRENT_USER\Software\Microsoft\IntelliType Pro\ModelSpecific\1016\EventMapping\82]
The ModelSpecific\1016 stuff may be different depending on the keyboard
The 82 is the specific key (in this case, Favorite 5)
Reference here: http://xahlee.org/emacs/ms_keyboard/intellitype_rigistry.html
"Command"=dword:0000019c
"Keystroke"=dword:00000757
"KeystrokeText"="Ctrl + Alt + Shift + W"
"Macro"="Escape.mhm"
Command should be 412 (Decimal) to emulate another key (again see the reference). Keystroke is the actual key:
* Shift = 0x100
* Ctrl = 0x200
* Alt = 0x400
Keycode reference from Microsoft: http://msdn.microsoft.com/en-us/library/dd375731%28VS.85%29.aspx
I don't think KeystrokeText or Macro matter
Another useful reference:
http://hardanswers.net/control-tab-with-intellimouse-keystrokes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment