Author Topic: Keyboard mapping  (Read 1161 times)

0 Members and 1 Guest are viewing this topic.

Offline exousia7

  • Thread Starter
  • Posts: 82
Keyboard mapping
« on: Wed, 25 April 2012, 06:32:13 »
Are there any good softwares out there that can remap keys on a keyboard? I want to use my Cherry keyboard but at the same time I want to have multimedia function keys on my keyboard. Is there anything I can do to remap keys on my Cherry board and make a "Fn" key with multimedia setup?

Offline Djuzuh

  • Posts: 1127
Keyboard mapping
« Reply #1 on: Wed, 25 April 2012, 06:37:11 »
Hum, you can do a lot of awesome stuff with autohotkey, but not everything, and you'll need to learn their langage.

If you have not a huge lot of computer knowledge, it will be hard.

Offline exousia7

  • Thread Starter
  • Posts: 82
Keyboard mapping
« Reply #2 on: Wed, 25 April 2012, 07:37:30 »
Wow this does seem pretty complicated....

Offline pyro

  • Posts: 177
Keyboard mapping
« Reply #3 on: Wed, 25 April 2012, 12:57:58 »
Hotkeyz has media keys for Winamp, maybe those work for other players too?

Offline Lotsofgoats

  • Posts: 19
Keyboard mapping
« Reply #4 on: Wed, 25 April 2012, 13:16:18 »
Autohotkey really isn't that complicated, though. Most things that you want to do probably fall under the good ole programming law of looking it up because somebody else did it already, when it comes to AHK.

You can do a mapping to any of the standard multimedia keys. For you, that'd be something like:

$F10::Volume_Mute
$F11::Volume_Down
$F12::Volume_Up

...etc. for any of the F-keys and the standard multimedia commands. You can see the available list here.

You can also choose a modifier key to press along with the F-key (e.g. ctrl+F12 = volume up) or you can toggle the mapping with scroll lock in case you don't want to lose the original functionality of the F-keys.

tl;dr what exactly do you want, it'll be easy to make.
« Last Edit: Wed, 25 April 2012, 13:23:05 by Lotsofgoats »