gametechmods

Off-Topic => Off-Topic Discussion => Topic started by: Kujii on May 20, 2011, 08:19:12 AM

Title: Reprogramming Key Functions.
Post 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.
Title: Re: Reprogramming Key Functions.
Post by: 123savethewhales on May 20, 2011, 10:30:16 AM
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)
Title: Re: Reprogramming Key Functions.
Post by: Kujii on May 20, 2011, 11:55:28 AM
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.
Title: Re: Reprogramming Key Functions.
Post by: 123savethewhales on May 20, 2011, 03:27:28 PM
Quote
Tab & 1::
Send {F1}
return
Title: Re: Reprogramming Key Functions.
Post by: Kujii on May 20, 2011, 08:27:04 PM
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.