按键精灵谁能帮我做一个按V 之后按T 在0.9秒后按Z的脚本
3个回答
展开全部
我不知道你要的到底是什么,我想出了2种可能
一种是VTZ三个字自动按 我设置饿了循环,不需要循环的把 WHILE TRUE 和WEND 去掉就可以 如下
While true
KeyPress "V", 1
Delay 10
KeyPress "T", 1
Delay 900
KeyPress "Z", 1
Delay 10
Wend
另外一种是你自己按V 如下。 也是设置了循环,不需要就去掉
While true
key = WaitKey()
If key = 86 Then
KeyPress "T", 1
Delay 900
KeyPress "Z", 1
End If
Wend
一种是VTZ三个字自动按 我设置饿了循环,不需要循环的把 WHILE TRUE 和WEND 去掉就可以 如下
While true
KeyPress "V", 1
Delay 10
KeyPress "T", 1
Delay 900
KeyPress "Z", 1
Delay 10
Wend
另外一种是你自己按V 如下。 也是设置了循环,不需要就去掉
While true
key = WaitKey()
If key = 86 Then
KeyPress "T", 1
Delay 900
KeyPress "Z", 1
End If
Wend
展开全部
将脚本启动热键设置成V,脚本如下:
KeyPress "T", 1
Delay 900
KeyPress "Z", 1
KeyPress "T", 1
Delay 900
KeyPress "Z", 1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
KeyPress V, 1 //按V
KeyPress T, 1//按T
Delay 900 //延迟900毫秒
KeyPress Z, 1 按Z
KeyPress T, 1//按T
Delay 900 //延迟900毫秒
KeyPress Z, 1 按Z
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询