作者ScorAlan (漫步在云端)
站内EzHotKey
标题[AHK-] SetTimer取代Loop+sleep的用法
时间Mon Jan 4 11:48:51 2010
这两天由於需要写出一个大约四小时可以重复执行的东西
在爬文发现了有大大建议可以使用SetTimer取代LOOP的写法
但执行过後要等四个小时才能够做第一次执行
不知道是否能做到先执行再等待呢?
执行→
等待4小时→
执行→
等待4小时→
执行→
等待4小时.....
-----------------------------------------------------------------------------
!0::
GoSub, A
#Persistent
setTimer, A, 14400000
return
A:
run C:\Users\Alan\AppData\Local\Google\Chrome\Application\chrome.exe
winwait Google - Google 浏览器
winactivate
send ^b
sleep, 1500
mouseclick,l, 81, 82
sleep, 15000
send ^b
.
.由於中间还有很多行所以暂时先省略,如果需要我马上补上
.
.
sleep, 300
WinClose, Facebook 上的 FarmVille - Google 浏览器
return
return
F12::
reload
return
-----------------------------------------------------------------------------
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 114.43.18.159
※ 编辑: ScorAlan 来自: 114.43.18.159 (01/04 11:50)
1F:推 cog5566:说明书上有说,就那个label自己先跑一次。Gosub A .... 01/04 15:46
感恩^____^
※ 编辑: ScorAlan 来自: 114.43.18.159 (01/04 20:39)