我想问下 我用的按键精灵9 我想按1键 能顺序按出12345

2024-12-19 03:45:08
推荐回答(2个)
回答1:

在源代码上加个Delay就行了,比如说Delay 1000 就是间隔1秒 (Delay是用毫秒做单位的1000毫秒=1秒)
KeyPress "1", 1
Delay 1000
KeyPress "2", 1
KeyPress "3", 1
KeyPress "4", 1
KeyPress "5", 1

回答2:

楼上错了 应该是
KeyPress "1", 1
Delay 1000
KeyPress "2", 1
Delay 1000
KeyPress "3", 1
Delay 1000
KeyPress "4", 1
Delay 1000
KeyPress "5", 1
中文翻译为
按键 1
延迟1秒
按键 2
延迟1秒
按键 3
延迟1秒
按键 4
延迟1秒
按键 5
延迟1秒