求会按键精灵的大大 帮做一个,每1秒按个1,每3秒按下TAB键的脚本~~ 10
3个回答
展开全部
楼上的不行,你那样出来的效果是每隔4秒(1+3)才会按一下1和TAB。用下面的脚本即可:
----------------------------------------------------------------------------------------------------
Rem 开始
KeyPress 9,1 //按TAB键
Delay 500 //延时0.5秒
KeyPress 49,1 //按1键
Delay 1000 //延时1秒
KeyPress 49,1 //按1键
Delay 1000 //延时1秒
KeyPress 49,1 //按1键
Delay 500 //延时0.5秒
Goto 开始
-----------------------------------------------------------------------------------------------------
或者开两个脚本同时运行,一个脚本是隔1秒按个1,一个脚本是隔3秒按下TAB键,相信这个难不倒你吧?
----------------------------------------------------------------------------------------------------
Rem 开始
KeyPress 9,1 //按TAB键
Delay 500 //延时0.5秒
KeyPress 49,1 //按1键
Delay 1000 //延时1秒
KeyPress 49,1 //按1键
Delay 1000 //延时1秒
KeyPress 49,1 //按1键
Delay 500 //延时0.5秒
Goto 开始
-----------------------------------------------------------------------------------------------------
或者开两个脚本同时运行,一个脚本是隔1秒按个1,一个脚本是隔3秒按下TAB键,相信这个难不倒你吧?
展开全部
楼上的都不行呦。要是开两个 楼主还找你们问什么。。
n=1
rem Start
KeyPress "1", 1
delay 1000
n=n+1
if n=3 //到3秒了
KeyPress "Tab", 1
n=0 //计数器清零
endif
goto Start
没测试,应该没问题吧~
我blog里也许有你参考的资料
n=1
rem Start
KeyPress "1", 1
delay 1000
n=n+1
if n=3 //到3秒了
KeyPress "Tab", 1
n=0 //计数器清零
endif
goto Start
没测试,应该没问题吧~
我blog里也许有你参考的资料
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-04-17
展开全部
Rem re1
Delay 1000
KeyPress "1", 1
Delay 3000
KeyPress "Tab", 1
Goto re1
Delay 1000
KeyPress "1", 1
Delay 3000
KeyPress "Tab", 1
Goto re1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询