作者Lumania (小糠榔)
看板EzHotKey
标题Re: [AHK-] 抓视窗标题
时间Tue Sep 2 10:15:34 2008
※ 引述《bestpika (飞影‧忌子)》之铭言:
: 大家好,
: 目前我有一个IE视窗,
: 因为要做某个动作而必须(隔n秒)重复F5重整,
: 直到IE标题列改为[xxx]才停止重整,
: 或是直到标题不为[yyy]才停止重整。
: 请问这样该怎麽实作呢?
: 谢谢
ifwinnotactive, ahk_class IEFrame
winactivate, ahk_class IEFrame
winwaitactive, ahk_class IEFrame, , 3
if errorlevel
return
loop
{
sleep n000 ; n is the interleaved seconds
send {F5}
ifwinactive, xxx ahk_class IEFrame ; xxx is the title of IE
break
ifwinnotactive, yyy ahk_class IEFrame ; yyy is the title of IE
break
}
return
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 210.69.13.1
1F:推 bestpika:大感谢!! 09/02 13:22
2F:推 bestpika:对了 另外请问如果是firefox的标题那IEFreme要改成什麽? 09/02 17:07
3F:→ bestpika: a 09/02 17:07
4F:推 bestpika:我找到了MozillaUIWindowClass 09/02 17:12