gametechmods
Off-Topic => Off-Topic Discussion => Topic started by: Kujii on May 20, 2011, 08:19:12 AM
-
I'm looking for a program that would allow me to reprogram the functionality of my keys. I checked Microsoft's site and they do not have what I'm looking for.
I was intending on making it so that if I had Tab, or another button like that pushed down, my number keys would function as the Function keys.
So, for example, Tab + 1 would = Function 1. It would be rather useful to have, but I couldn't find a program to do such on Microsofts site.
I'm using a Standard 101/102 key Microsoft Natural keyboard, according to my computers Control Panel.
According to Microsoft I'm not using a keyboard though : P they really don't seem to like old hardware.
-
AUTOHOTKEY
http://www.autohotkey.com/ (http://www.autohotkey.com/)
Or micro macro if you are trying to bot in a game
http://www.solarstrike.net/downloads.php (http://www.solarstrike.net/downloads.php)
-
well this program would be perfect if It didn't keep giving me this BS error. It refuses to let me combine Tab with the 1-0 keys.
-
Tab & 1::
Send {F1}
return
-
alright, thanks for the help, I didn't realize I needed the addition of the 'return' at the end of the Script, so it ended up spamming keys when I tried this before.
Now to see what else I can learn with this.