Verwenden von Autohotkey mit einem Gamepad

9623
Phenom

Ich kann Tasten auf einem Gamepad wie folgt zuordnen:

Joy2:: Send ; Hold down the left-arrow key. KeyWait Joy2 ; Wait for the user to release the joystick button. Send ; Release the left-arrow key. return 

Ich möchte jedoch das Richtungspad neu zuordnen, um stattdessen dasselbe zu tun. Wie kann ich das machen?

3

1 Antwort auf die Frage

5
RJFalconer

Auothotkey Joystick-Achsen-Tutorial; http://www.autohotkey.com/docs/KeyList.htm#Joystick

Oder Sie können KeyHistory verwenden, um herauszufinden, wie der Autoit-Name des Schlüssels lautet.

key_detect.ahk:

!k:: #InstallKeybdHook KeyHistory return 

Run, drücke Alt + K. Zeigt eine Liste der erkannten Schlüssel an.