geekhack

geekhack Community => Keyboards => Topic started by: marvkip on Tue, 19 April 2011, 23:30:19

Title: Disable Alt Key
Post by: marvkip on Tue, 19 April 2011, 23:30:19
Is there a way where I can disable the alt keys, or even just the left alt key in Windows 7? Just so i can use my mechanical keyboard while i wait for a response from EK.
Title: Disable Alt Key
Post by: hcry4 on Wed, 20 April 2011, 09:33:14
Autohotkey (http://www.autohotkey.com/docs/misc/Remap.htm) should solve this problem.
Title: Disable Alt Key
Post by: alaricljs on Wed, 20 April 2011, 10:42:36
ahk:
Code: [Select]
#NoEnv
LAlt::
return
Title: Disable Alt Key
Post by: marvkip on Wed, 20 April 2011, 11:05:49
Thank you guys SOOO much! :hail:
Title: Disable Alt Key
Post by: alaricljs on Wed, 20 April 2011, 15:36:21
Hmmm, after a little thought you might want more than what that script does.  It will just prevent Left Alt from firing on it's own.  To make it so it can't fire on it's own or with any other key:

Code: [Select]
#NoEnv
*LAlt::
return