Is there a way I can program an Alt Command to paste in specific words?

VitalForces

New member
Oct 24, 2011
1
0
1
I'm created a list of colleges and universities. Is there a way I can create alt commands so I don't have to type colleges and universities over and over?
 
I would recommend AutoHotKey. http://www.autohotkey.com/
Here is a script to use with it. (I would read this to see how it works: http://www.autohotkey.com/docs/Tutorial.htm)

!*Whatever key you want to use in assoc with alt*::
Send *Whatever text you want to insert*
return

So, here is an example:

!b::
Send Colorado State University
return

With this script, whenever Alt+b was pressed, "Colorado State University" would be inserted.
 
Back
Top