求按键精灵随机按键(1——4)中一个按键,如何编写?
发布网友
发布时间:2024-10-02 08:59
我来回答
共3个回答
热心网友
时间:1天前
随机也算是按那个都无所谓吧 那就让他循环
rem
按下1键代码
间隔时间 多少秒
按下2键代码
间隔时间 多少秒
按下3键代码
间隔时间 多少秒
按下4键代码
间隔时间 多少秒
goto
你不停止就继续按下去
热心网友
时间:1天前
Dim n,nu,myArray
Randomize
myArray = Split("1 2 3 4")
n = UBound(myArray)
Nu = myArray(Int((n+1)*Rnd))
KeyPress ""&nu&"",1
热心网友
时间:1天前
Rem start
Randomize
x = Int(100 * Rnd)
If x<48 or x>57 then
Goto start
EndIf
x=cstr(chr(x))
Delay 1000
KeyPress x,1