I'm currently translating the following page for the german wiki.
http://www.autohotkey.com/docs/misc/Remap.htm
Somewhere near the end of the page the following is written:
Quote:
Joystick buttons require a different remapping method. In addition, this alternate method is also required for all remappings on Windows 95/98/Me. The following example makes button #2 of the first joystick become the left-arrow key:
Joy2::
Send {Left down} ; Hold down the up-arrow key.
KeyWait, Joy2 ; Wait for the user to release the joystick button.
Send {Left up} ; Release the up-arrow key.
return
Isn't this a mistake in the comments of the script? Mustn't it read left-arrow key?