按键精灵脚本怎么设置定时执行?,比如说我要到22点40执行,怎么设置

2024-11-29 00:15:49
推荐回答(1个)
回答1:

首先要确定你的脚本执行时间不会超过半小时.
Do
mm = time
sj = split(mm, ":")
If int(sj(0)) >= 8 and int(sj(0)) < 22 Then
If int(sj(1)) = 0 and int(sj(1)) < 30 Then
Call 脚本
End If
End If
Delay 500
Loop
Sub 脚本

End Sub