用autohotkey进行如下两个键盘操作的代码

2025-04-13 03:05:47
推荐回答(1个)
回答1:

t=0
9::
t=1
while t==1 {
sleep 200
send {R}
sleep 200
send {F}
}
return
8::
t=0
return