作者arj32 (zipper)
看板EzHotKey
標題Re: [AHK-] Loop中每次sleep時間皆不相同
時間Wed Apr 28 17:38:52 2010
簡單改了下
;-----------
ctrl::
c=ft
loop,5
{
send 12345
sleep, checktime()
c=st
}
send over
return
checktime()
{
global
if c=ft
{
time=1000
}
else
{
time=10000
}
Return time
}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 123.120.214.186
1F:推 ScorAlan:請問a大global在裡面的意思是?^^" 04/28 20:44
2F:→ shyangs:函式內所有變數皆為 global (全域變數) 04/28 21:29
3F:推 ScorAlan:感謝兩位解決了我的困擾^^ 04/29 00:49