谁能帮我编写一个每20秒按一次ctrl+空格键的按键精灵的脚本啊?

2025-05-18 20:59:41
推荐回答(2个)
回答1:

Delay 20000
KeyPress 17 1

这个就是了

回答2:

楼上的错了,绝对不对
代码:
VBS dim t
t=now
Rem start
KeyDown 17,1
Delay 30
KeyPress 32,1
KeyUp 17,1
Rem 1
If datediff ("s",t,now)>=20000
Goto start
Else
Goto 1
EndIf