每天早上9:20分按Q,9:26分按W,按键精灵怎样编写?

下载的不是只可以用十五分钟的吗
2024-12-01 17:21:29
推荐回答(1个)
回答1:

Rem start
NowTime = Time //Time -- 获得当前时间
If 9=Hour(NowTime) and 20=Minute(NowTime) Then
//Hour -- 获得小时, Minute -- 获得分钟
KeyPress "Q", 1
Else
Goto start
End If
Delay 360000
KeyPress "W", 1
Goto start