Author Topic: Reprogramming Key Functions.  (Read 868 times)

Offline Kujii

  • Ultra Heavyweight
  • Posts: 1638
  • Rep: -3
    • View Profile
    • Awards
  • Skype: KujiiTetsuiga
Reprogramming Key Functions.
« 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.

Offline 123savethewhales

  • *
  • Posts: 2923
  • Rep: 30
  • Friendship is Magic
  • Awards BOTM Winner
    • View Profile
    • Awards
Re: Reprogramming Key Functions.
« Reply #1 on: May 20, 2011, 10:30:16 AM »
AUTOHOTKEY

http://www.autohotkey.com/

Or micro macro if you are trying to bot in a game

http://www.solarstrike.net/downloads.php

Offline Kujii

  • Ultra Heavyweight
  • Posts: 1638
  • Rep: -3
    • View Profile
    • Awards
  • Skype: KujiiTetsuiga
Re: Reprogramming Key Functions.
« Reply #2 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.

Offline 123savethewhales

  • *
  • Posts: 2923
  • Rep: 30
  • Friendship is Magic
  • Awards BOTM Winner
    • View Profile
    • Awards
Re: Reprogramming Key Functions.
« Reply #3 on: May 20, 2011, 03:27:28 PM »
Quote
Tab & 1::
Send {F1}
return

Offline Kujii

  • Ultra Heavyweight
  • Posts: 1638
  • Rep: -3
    • View Profile
    • Awards
  • Skype: KujiiTetsuiga
Re: Reprogramming Key Functions.
« Reply #4 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.