Author Topic: Need a program that lets you reroute keys and stuff  (Read 847 times)

i want to be able to, lets say press CTRL + MOUSE1 and have it type a "1", how would i go about doing this and what programs would i need to use?

I think with autohotkey you can do stuff like that
not sure


AutoHotKey

I used it to remap space to left alt when my spacebar was broken.

I use Autohotkey to do things like that.

When I press End it minimizes everything so I'm at my desktop.

some other key also opens the calculator but I forget what I set it to..

i mean like if i press a certain combo of buttons it will press another button

like i press a and it types h

i mean like if i press a certain combo of buttons it will press another button

like i press a and it types h

AutoHotKey can do this.

this would make a good prank :cookieMonster:

AutoHotKey can do this.

how? all i get is this gay text file and i want a GUI.

how? all i get is this gay text file and i want a GUI.

What are you trying to do with it?

What are you trying to do with it?

i mean like if i press a certain combo of buttons it will press another button

like i press SHIFT + a and it types h



i mean like if i press a certain combo of buttons it will press another button

like i press SHIFT + a and it types h

Yes I know. I want to know the exact keys you want to remap so I can tell you what to put in the text file.

If you actually do want Shift+a = h, then put this in the script file:

+a::h

Yes I know. I want to know the exact keys you want to remap so I can tell you what to put in the text file.

If you actually do want Shift+a = h, then put this in the script file:

+a::h

how would i do mouse presses?


how would i do mouse presses?

LButton
RButton
MButton
WheelUp
WheelDown

A key followed by a double colon will execute the command after the double colon.

! is Alt
^ is Ctrl
+ is Shift

It's pretty simple to substitute key presses. You can do a lot of complex things too. There's a whole bunch of info on the site.

http://www.autohotkey.com/docs/

And here's a list of key names.

http://www.autohotkey.com/docs/KeyList.htm