我正在使用AutoHotkey。这个程序我想在我的脚本中使用左侧小键盘,但我不能使用它。这个案例很重要,因为我玩游戏并且那个游戏使用左侧小键盘,而不是右侧。(右侧小键盘在此游戏中不起作用)
这是我的代码;
SendMode Input
~control::
Loop
{
if GetKeyState("e") ; If this statement is true, the user has physically released the F1 key.
break ; Break out of the loop.
send,{Numpad8}
Sleep 200
send,1
Sleep 200
}
return
任何想法?
编辑=我不知道如何显示这个问题。你怎么能理解这个Send command
按左侧的小键盘或右侧?我玩Knight Online游戏,我可以在游戏中尝试这些方法。代码是否有效。但是你可以试试吗?