The Problem
If you're a frequent ventrilo user like myself, you may have the same problem I did: none of the keys on your keyboard are really useless. so, Whichever key you pick as a push-to-talk button, you're going to accidentally hit from time to time. or you're activating some function you don't need when you speak.
Now, you may mention 'scroll lock' or perhaps 'pause' or some special windows key, but the problem with those is that even though you don't really need em, programs still respond to them in ways that are undesirable.
The idea
But wait a minute... how often do you actually use Caps Lock intentionally? It's a leftover from the mechanical typewriter era and you really hardly ever need it. Most modern keyboards also have 2 windows keys and a popup menu key that not everybody uses.
And some older keyboards and Mac keyboard have F13-F16 keys. but hardly any programs use those. Still, Windows recognizes those extra F-keys. So, if youCocould remap a key like Caps Lock to be an f13 button: You cocould use f13 as your push-to-talk button, without it affecting anything else!
The solution
The. reg files below will remap specific keys to f13. if you want to undo the change for some reason, run the bottom. reg file. if your browser shows the contents of the file instead of saving it, rightclick the link and select 'Save .. '. after running. reg file, restart your windows.
- Remap Caps Lock to f13
- Remap left Windows key to f13
- Remap right Windows key to f13
- Remap both Windows keys to f13
- Remap popup menu key to f13
My favorite:
- Remap Caps Lock to f13, left windows to F14, right windows to F15
And to undo:
- Undo any of the above remappings
Note: If you already have some remapping in place, don't just run these registry files. whichever one you run, it will always overwrite any old ones already in place. if you experience problems, or have questions, feel free to contact me by grismar@grismar.net. also note that I cannot be held responsible for any damage you do by running these files on your registry.
The technical details
The value that is entered into your registry, tells windows to remap a specific set of keys. it's a binary registry value, which basically means that's it's not human-readable and needs to be entered into the registry as a series of hexadecimal (HEX) values.
the structure of the value is explained in detail the MS scan code mapper for Windows page. it boils down to this: the first eight hex codes are set to 00, since they're unused (version and flags ). the next four form a number, indicating the number of ings. '02 00 00 00' wocould mean 1 ing, since the count between des the final null mapping. then pairs of two hex codes define the mappings, indicating which keycode shocould replace which key position. for example '1d 00 3A 00' wocould remap the Caps Lock key (3A) as a ctrl key (1D ).