Thread: AutoHotKey
View Single Post
  #2  
Old 11-30-2005, 06:42 PM
Link774 Link774 is offline
Junior Member
 
Join Date: Sep 2004
Posts: 22
Default Re: AutoHotKey

What you wrote was a script that just runs once. if you want it to be mapped to a hotkey you'll need to edit the .ahk file. Something like:

a::
[the stuff you recorded goes here and would be mapped to 'a']
return

Check out the help documents that came with AutoHotKey, it's quite complete. When it is running in the background you will see a green icon with a H. You can map multiple hotkeys within the same script. I'm not sure how to tell it to respond to your gamepad, but if you try recording a script where you press the buttons on the gamepad and then look at the script, you should be able to figure it out. Don't worry about converting it to an exe, that's for sending your scripts to people without the software.

-Link
Reply With Quote