求高手给做一个按键精灵脚本.60秒按一次空格键.无限循环~

求高手给做一个按键精灵脚本.60秒按一次空格键.无限循环~
2025-02-24 15:21:50
推荐回答(3个)
回答1:

楼下的那个可以实现,但不是完美的我给你优化了一下
do
For 60
100
next
KeyPress "Space", 1
loop

回答2:

Sub a()
KeyPress "Space", 1
Delay 60000
Call a()
End Sub

回答3:

Rem a
KeyPress "Space", 1
Delay 60000
Goto a