求按键精灵脚本写法 一个按键控制三个热键循环切换
发布网友
发布时间:2024-10-24 11:30
我来回答
共1个回答
热心网友
时间:2024-10-30 04:42
//好像你要的是这个脚本,我这个是按1,正在用按键没办法改.
for f=1 to 3
//等待按键
按键 = WaitKey()
If cint(按键) = 49 Then //判断按了那个键1
if f=1
KeyPress "F5", 1
Delay 200
end if
if f=2
KeyPress "F6", 1
Delay 200
end if
if f=3
KeyPress "F7", 1
Delay 200
f=0
end if
End If
next