Walls192 Posted October 7, 2007 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.
Nahuel Posted October 7, 2007 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)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now