For a moment I thought this was going to be about that woman who got fired over writing with bold red caps (http://www.foxnews.com/story/0,2933,545221,00.html?test=latestnews).
Back on windows I always use a registry hack to turn caps lock into another ctrl. :)
I press control with the ridge of my hand, and press it without leaving the home row, fatiguing my pinky or otherwise making it unavailable for combos.
Show Image(http://geekhack.org/attachment.php?attachmentid=4195&stc=1&d=1251745782)
LOL - I just noticed in the Pic the angle is off on the screen printing for Alphalock. Well, with Steve it was the IDEAS that mattered more than the EXECUTION.
I looked into AutoHotKey when I saw your article about turning any keyboard into an HHKB, but apparently it doesn't let you use scan codes, so for what I want to do, it would be necessary to modify the (supplied) source code.Ripster already said it: yes you can use scancodes.
SC01F::a
Ripster already said it: yes you can use scancodes.
For example, this is a valid hotkey:Code: [Select]SC01F::a
::SC007
F1::{sc007}
or F1::Send {sc007}
The latter form may have a larger chance of working, but it sends the scancode while untoggling any modifier.What key is scancode number 007 exactly, and why do you want to send raw scancodes anyway?