将自动热键与游戏手柄结合使用

将自动热键与游戏手柄结合使用

我可以像这样映射游戏手柄上的按钮:

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

但是我想重新映射方向键来实现相同的功能。我该怎么做?

答案1

Auothotkey 操纵杆轴教程; http://www.autohotkey.com/docs/KeyList.htm#Joystick

或者您可以使用 KeyHistory 来查找该键的 Autoit 名称;

密钥检测.ahk:

!k::
#InstallKeybdHook
KeyHistory
return

运行,按 Alt+K。调出检测到的按键列表。

相关内容