如何做到按键精灵脚本运行到一定的位置自动中止,按特定键继续运行。是继续运行而不是重新运行。

2024-11-26 05:25:49
推荐回答(1个)
回答1:

a = WaitKey
While true
If a = 65 Then //65表示按A,根据实际修改
Goto P1
End If
Delay 500
Wend
Rem P1