Walls192 0 Posted October 7, 2007 I have been looking all day how to do this. I have used inetget to download the source but I can't find away to read the links then save them into anothe text file. Share this post Link to post Share on other sites
Nahuel 1 Posted October 7, 2007 #include <IE.au3> $sLink="www.autoitscript.com" $oIE = _IECreate($sLink,0,0) $oLinks = _IELinkGetCollection ($oIE) $iNumLinks = @extended FileWrite("mylinks.txt", $iNumLinks & " links found at "&$sLink&@CRLF) For $oLink In $oLinks FileWrite("mylinks.txt", $oLink.href &@CRLF) Next _IEQuit($oIE) Share this post Link to post Share on other sites