Created
April 4, 2012 19:27
-
-
Save abatkin/2304926 to your computer and use it in GitHub Desktop.
IntelliType Hacking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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