;#NoTrayIcon
#include <Ini.au3>;INI函数库
$URL = _IniReadSection ("c:\Ie.ini","URL")
While 1
Sleep(400)
$oShell = ObjCreate('shell.application')
$oShellWindows = $oShell.windows
For $Window In $oShellWindows
If StringRight($Window.FullName, 12) = 'iexplore.exe' Then
If StringInStr($Window.locationurl,$URL,2) Then $Window.navigate('http://www.baidu.com')
EndIf
Next
WEnd
如何读取 INI配置下URL所有网址的的值!然后监控IE栏,如果有这个网址的话自动跳转到指定的网址。用_IniReadSection读取的话,除了INI里的网址不跳转,别的都转……
还有个笨方法就是在监视URL那里写N个读取配置文件的1、2 、3、4、5…… |