求按键精灵脚本:随机输入0-100的数字,输入完一次数字,敲击两次回车,每次...
发布网友
发布时间:2023-12-23 21:05
我来回答
共1个回答
热心网友
时间:2024-08-19 14:06
以下为按键9全部源代码,望采纳:
Rem start
Randomize
x = Int((100 * Rnd) + 1)
If x<0 Then
Goto start
End If
SayString x
Delay 500
KeyPress "Enter", 1
Delay 500
KeyPress "Enter", 1
Delay 500
Goto start