Author Topic: HHKB 2, Remapping Keys  (Read 2833 times)

0 Members and 1 Guest are viewing this topic.

Offline morpheus

  • Thread Starter
  • Posts: 496
  • Location: South Korea
HHKB 2, Remapping Keys
« on: Sun, 23 February 2014, 23:50:09 »
Hi guys,

I have been trying to get back to liking my HHKB 2.
But there has been one major impediment.
I can't get used to the placement of the backspace.
The problem is, I want to change it from the Grey "DELETE" button, to the top left hand corner "~" key.

Is there a solution to this?

I await your elite responses.

Offline Pacifist

  • Report me *again* if there are gifs in my sig
  • * Elevated Elder
  • Posts: 3599
  • Location: Cali
  • on hiatus
Re: HHKB 2, Remapping Keys
« Reply #1 on: Sun, 23 February 2014, 23:51:55 »
AHK?

Offline morpheus

  • Thread Starter
  • Posts: 496
  • Location: South Korea
Re: HHKB 2, Remapping Keys
« Reply #2 on: Sun, 23 February 2014, 23:55:39 »

Offline Pacifist

  • Report me *again* if there are gifs in my sig
  • * Elevated Elder
  • Posts: 3599
  • Location: Cali
  • on hiatus
Re: HHKB 2, Remapping Keys
« Reply #3 on: Sun, 23 February 2014, 23:56:37 »
autohotkey to remap keys

Offline dustinhxc

  • * Exalted Elder
  • Posts: 6744
  • Location: MN
  • IV
Re: HHKB 2, Remapping Keys
« Reply #4 on: Sun, 23 February 2014, 23:58:31 »
Download Autohotkey and open a new script, map the keys you want and then run the script. I save mine to my documents so I can run it anytime I boot Windows.
Here is what I use:


#InstallKeybdHook
RAlt::Ctrl
`::BackSpace


If you use map then use Key Remap 4 Mac Book

Offline nubbinator

  • Dabbler Supreme
  • * Maker
  • Posts: 8658
  • Location: Orange County, CA
  • Model M "connoisseur"
Re: HHKB 2, Remapping Keys
« Reply #5 on: Mon, 24 February 2014, 00:04:12 »
Might want to try a section other than great finds ;)

Offline morpheus

  • Thread Starter
  • Posts: 496
  • Location: South Korea
Re: HHKB 2, Remapping Keys
« Reply #6 on: Mon, 24 February 2014, 00:09:03 »
Might want to try a section other than great finds ;)

Sorry, wrong section. I had too many tabs open  ;D

Moderator, please move to Keyboard section.

Thanks!

Offline naasfu

  • The Curator
  • * Destiny Supporter
  • Posts: 4083
  • CURSE YOU HE-MAN
Re: HHKB 2, Remapping Keys
« Reply #7 on: Tue, 25 February 2014, 14:42:59 »
If you're just doing simple key remaps on Windows, check out SharpKeys.  SharpKeys simply modifies Windows' regkey settings for key mappings, so you only need to run it once to apply the remaps that you want.
a cute stray cat combination that comes out happily when you look at your face is cute

WANTED: gib clacks        post your mspaints!        post your rubber domes!

Offline Macsmasher

  • Posts: 462
  • Location: Portland, OR
Re: HHKB 2, Remapping Keys
« Reply #8 on: Wed, 26 February 2014, 15:28:38 »
Hi guys,

I have been trying to get back to liking my HHKB 2.
But there has been one major impediment.
I can't get used to the placement of the backspace.
The problem is, I want to change it from the Grey "DELETE" button, to the top left hand corner "~" key.

Is there a solution to this?

I await your elite responses.

This made me chuckle. I liked the placement of the HHKB's Backspace key so much that I used an AutoHotKey script to move the Backspace on my non-HHKB boards to the Backslash key right above Enter. Just goes to show this kind of stuff is all about personal preference.

When switching between boards throughout the day, just right-click on the script in the Systray and 'Suspend Hotkeys' to enable or disable the script without having to exit the it. Works flawlessly.

I'm running Win. Can't remember if you're running Mac, and don't know if it's even available for Mac. If not, I'm sure something is.

I've also used AHK to create a hot keys for media functions. I have two mods in that script (which runs separately from the Backspace mod) that allow me to adjust volume.

I can adjust volume by either Win + MouseWheel or Win + PgUp / PgDn. I also can use Win + MouseButton to mute. Even works flawlessly in game.

If you want to give it a try, the script is:

#PgUp::Volume_Up
#PgDn::Volume_Down
#End::Volume_Mute

#WheelDown::Volume_Down
#WheelUp::Volume_Up
#MButton::Volume_Mute