修改启动热键,你可以编写2个脚本 设置启动热键为 空格键/O键盘
你可以用按键获取键盘状态,用指定键触发对应脚本
do
Key = GetLastKey()
If Key = 32 Then //如果空格键被按下
KeyPress "S", 1
Delay 10
KeyPress "D", 1
Delay 10
KeyPress "J", 1
Delay 10
ElseIf Key = 79 Then//如果O键被按下
KeyPress "S", 1
Delay 10
KeyPress "A", 1
Delay 10
KeyPress "J", 1
Delay 10
End If
Delay 20
Loop
KeyPress "S", 1
Delay 10
KeyPress "D", 1
Delay 10
KeyPress "J", 1
打开按键精灵,点新建,选源文件把这个复制进去。右侧有启动热键,设置成方便的按键,然后保存就行 了。