Stardew Valley自动热键脚本

时间:2017-02-27 00:36:35

标签: autohotkey

我的stardew的autohotkey脚本有问题。我出于某种原因无法在按钮4上为我演员。我目前有这个代码,按照所有帐号应该有效:

#IfWinActive Stardew Valley

XButton1::
SendInput, {LButton Down}
KeyWait, LButton, T1.0248
SendInput, {LButton Up}
Return

1 个答案:

答案 0 :(得分:2)

如果您遇到#IfWinActive问题,那么您可能还没有输入AutoHotkey看到的窗口名称。使用AutoHotkey安装文件夹中的WindowSpy实用程序查找正确的窗口名称 或者,您可以尝试使用#IfWinActive ahk_exe proccessname.exe

如果您的游戏以管理员身份运行,那么您可能还必须以管理员身份运行脚本。