寫個簡單的AutoIT Script就可以囉
<pre class="c" name="code">WinWaitActive("123")
WinClose("123")
如果要在背景一直跑就加個無窮while loop
<pre class="c" name="code">While 1
WinWaitActive("123")
WinClose("123")
WEnd
更多資訊請參考下列網站
http://www.autoitscript.com/autoit3/index.shtml
也可以試試 AutoHotkey
常駐要查指令,按Hotkey執行的寫法大致如下(按F9):
f9::
WinGetTitle, Title, A
WinClose, %Title%
return