Is there a way to change the left alt key to be set as the spacebar?

0

I tried a few regedit tools and keyboard editing programs, they mostly say that the alt key is not configurable. My spacebar is broken and making my alt key the spacebar seems like the easiest and cheapest solution. Does anyone know how to do this?

Beninja2

Posted 2013-05-10T16:31:13.393

Reputation: 147

Is this serious? What if you need the Alt key? A new keyboard costs 15 bucks. – Jan Doggen – 2013-05-10T18:19:16.123

Have you tried SharpKeys or similar apps?

– Karan – 2013-05-16T21:36:13.257

tried sharpKeys, didnt work. – Beninja2 – 2013-05-17T17:41:46.143

also this is a laptop in response to @JanDoggen – Beninja2 – 2013-05-17T17:42:22.163

Answers

3

AutoHotkey will do what you're looking to accomplish, assuming you run Windows, which given the mention of regedit seems likely. Once AutoHotkey is installed, save the following script in a file with the extension .ahk:

LAlt::Space

Then double-click the file. While the script is running, your left alt key will produce a space character, and you'll have a 'H' icon in your system tray by which you can exit the script, edit it, and otherwise control how it behaves.

Aaron Miller

Posted 2013-05-10T16:31:13.393

Reputation: 8 849