|
|
Question : Reassign or disable "Windows" Key on a laptop keyboard.
|
|
Hello, I have toshiba satellite M30 laptop and run win XP home on it. It's keyboard has couple of keys that I never use such as "windows" key. Clicking this "Windows" key makes "Start" menu pop up. Now I use source code editor where I want to assign one of the editing functions to this key. I successfully did that and when I press this key while in the editor - editor does it's operation nicely, but after that Windows "Start" menu keeps always popping up. Can I disable this key for Windows somehow to avoid it popping the "Start" menu every time?
Thanks in advance
|
Answer : Reassign or disable "Windows" Key on a laptop keyboard.
|
|
There is a free program you can download called AutoHotkey that you can use to automate many tasks in many different ways. One of the things it does very easily is remap keys on the keyboard. You download the program here:
http://www.autohotkey.com/
After you install the program, you can read the documentation built into it to learn how to "program" the remapping of keys. The scripts you create can be "compiled" into .exe files which can then be run at system startup by creating a shortcut in the Startup folder on the Start Menu.
This is a quotation from the builtin help file about remapping keys:
The syntax for the built-in remapping feature is OriginKey::DestinationKey. For example, a script consisting only of the following line would make the "a" key behave like the "b" key:
a::b
The above example does not alter the "b" key itself. The "b" key would continue to send the "b" keystroke
|
|
|
|