Hello all!
So, in my quest to remap the Insert key to the Windows key I obviously first went to autohotkey. I had never used it before and wasn't really font of having to write scripts just to remap a single key (I don't mind writing scripts and the like, but was looking for sometime quick and dirty). Searching around their FAQ they mentioned an alternative that edits the registry for a key remap.
The tool is called KeyTweaker and can be downloaded here: http://webpages.charter.net/krumsick/
It is a small download, and extremely simple. I found it to suit my needs better than autohotkey. I thought I would share it with everyone here as a simple alternative if you aren't interested in writing scripts.
Trent
Alternative to AutoHoyKey: KeyTweaker
- off
- Location: the crapper, NL, EU
- DT Pro Member: -
weaksauce.
c'est ca!
But yeah, gui is easy etc etc.
But good luck emulating scrollwheel with keytweaker
And if you are using autohotkey by now, I seriously recommend adding these simple windows explorer fixes:
Code: Select all
If you prefer using your numpad ins/del:
#SingleInstance force
#UseHook
#InstallKeybdHook
#NoEnv
SendMode Input
; numpad will still work normally when numlock is on
NumPadDel:: send {AppsKey}
NumPadIns:: send {RWin Down}
NumPadIns Up:: send {RWin Up}
; win+hotkeys will work too. if you like app+hotkeys, change that the same way.
But yeah, gui is easy etc etc.
But good luck emulating scrollwheel with keytweaker
And if you are using autohotkey by now, I seriously recommend adding these simple windows explorer fixes:
Spoiler:
- off
- Location: the crapper, NL, EU
- DT Pro Member: -
Yes, sorry for the "defend ahk's honour" move there; wanted to show how easy and versatile it was.
Remap in registry (i.e. how windows even reads the board in the first place) is more sturdy for sure; no resources wasted 'catching' keystrokes and replacing the scancodes on the fly, will work 100% just like normal. Theoretically.
re: ahk, there's just one thing you need running, the script just gets interpreted by ahk; like text opens in notepad.
Remap in registry (i.e. how windows even reads the board in the first place) is more sturdy for sure; no resources wasted 'catching' keystrokes and replacing the scancodes on the fly, will work 100% just like normal. Theoretically.
re: ahk, there's just one thing you need running, the script just gets interpreted by ahk; like text opens in notepad.