
| Single keys of a-z or A-Z. | At least one Alt, Ctrl, or Win modifier is required with these keys. |
| Ctrl+Alt+Delete | It is reserved by Windows |
| F12 | It is also reserved by Windows, according to its API. |
| NumPad's Enter Key | Instead, use {Enter} which captures both Enter keys on the keyboard. |
| Win+B,D,E,F,L,M,R,U; and Win+Shift+M | These are built-in Windows shortcuts. Note: Win+B and Win+L might only be reserved on Windows XP and above. |
| Alt, Ctrl, Shift, Win | These are the modifier keys themselves! |
| Other | Any global hotkeys a user has defined using third-party software, and any combinations of two or more "base keys" such as '{F1}{F2}' or 'ab'. |
When you set a hotkey, HotKey captures the keypress and does not pass it on to the active application--with one exception: The Lock keys (NumLock, CapsLock, and ScrollLock) still toggle their respective state!
| Key Representation | Resulting Keypress |
|---|---|
| {!} | ! |
| {#} | # |
| {+} | + |
| {^} | ^ |
| {{} | { |
| {}} | } |
| {SPACE} | SPACE |
| {ENTER} | ENTER key on the main keyboard |
| {ALT} | ALT |
| {BACKSPACE} or {BS} | BACKSPACE |
| {DELETE} or {DEL} | DELETE |
| {UP} | Cursor up |
| {DOWN} | Cursor down |
| {LEFT} | Cursor left |
| {RIGHT} | Cursor right |
| {HOME} | HOME |
| {END} | END |
| {ESCAPE} or {ESC} | ESCAPE |
| {INSERT} or {INS} | INS |
| {PGUP} | PGUP |
| {PGDN} | PGDN |
| {F1} - {F12} | Function keys |
| {TAB} | TAB |
| {PRINTSCREEN} | PRINTSCR |
| {LWIN} | Left Windows key |
| {RWIN} | Right Windows key |
| {NUMLOCK} | NUMLOCK |
| {CTRLBREAK} | Ctrl+Break |
| {PAUSE} | PAUSE |
| {CAPSLOCK} | CAPSLOCK |
| {NUMPAD0} - {NUMPAD9} | Numpad digits |
| {NUMPADMULT} | NumpadMultiply |
| {NUMPADADD} | Numpad Add |
| {NUMPADSUB} | Numpad Subtract |
| {NUMPADDIV} | Numpad Divide |
| {NUMPADDOT} | Numpad period |
| {NUMPADENTER} | Enter key on the numpad |
| {APPSKEY} | Windows App key |
| {LALT} | Left ALT key |
| {RALT} | Right ALT key |
| {LCTRL} | Left CTRL key |
| {RCTRL} | Right CTRL key |
| {LSHIFT} | Left Shift key |
| {RSHIFT} | Right Shift key |
| {SLEEP} | Computer SLEEP key |