geekhack
geekhack Community => Keyboards => Topic started by: Voixdelion on Wed, 18 August 2010, 05:20:15
-
Is it possible to swap the position (function essentially, don't really care about the key itself) of the Ctrl and Alt keys on a Model F AT?
I could get used to the lack of arrows and the backspace mod is definitely in order, but I don't know if I can break the motor habit of the ctrl-v-x-c since I do a LOT of cutting and pasting via the keyboard shortcut.
-
It's probably easiest to do at the OS. If in Windows you can just use Sharpkeys as it has a feature that will identify the keycode entry when you press the key, makes it easy to remap.
-
It's probably easiest to do at the OS. If in Windows you can just use Sharpkeys as it has a feature that will identify the keycode entry when you press the key, makes it easy to remap.
What is "Sharpkeys''? In windows or 3rd party software?
-
AutoHotKey (http://www.autohotkey.com/) seems to be the key remapping utility favored by 9 out of 10 GeekHackers who chew PC's.
-
What is "Sharpkeys''? In windows or 3rd party software?
Third-party freeware. Basically just a GUI for remapping keys via the registry. AHK is nice but for something so low-level like swapping ctrl and alt I would just use Sharpkeys.
-
AHK is nice but for something so low-level like swapping ctrl and alt I would just use Sharpkeys.
Care to elaborate on that ?
-
Care to elaborate on that ?
AHK is an application that sits in the systray capturing keystrokes in realtime and converting them or executing scripts as instructed. Sharpkeys is simply a tool for doing key remaps in the registry that you could do manually if you really wanted to, and when this is done you don't leave any application running; Windows just does a certain keystroke for a certain scan code input as instructed and there's not really any overhead like you would have with using AHK. To put it simply AHK isn't worth using for something so simple, only if you were actually going to script macros with it.
-
AHK is an application that sits in the systray capturing keystrokes in realtime and converting them or executing scripts as instructed. Sharpkeys is simply a tool for doing key remaps in the registry that you could do manually if you really wanted to, and when this is done you don't leave any application running; Windows just does a certain keystroke for a certain scan code input as instructed and there's not really any overhead like you would have with using AHK. To put it simply AHK isn't worth using for something so simple, only if you were actually going to script macros with it.
It can be done manually via registry also?