Walls192 Posted October 7, 2007 Posted October 7, 2007 How wold i Using "_IELinkGetCollection" to get links only containing "viewad.php?ad=" as I wand to build an adbux auto clicker.
Thatsgreat2345 Posted October 7, 2007 Posted October 7, 2007 (edited) along these lines copied and pasted from help file, and then added slight modifications #include <IE.au3> #include <Array.au3> $oIE = _IECreate() $oLinks = _IELinkGetCollection ($oIE) $iNumLinks = @extended Global $Link_Array[$iNumLinks] For $oLink In $oLinks If StringInStr($oLink.href,'viewad.php?ad=') Then _ArrayAdd($Link_Array,$oLink.href) EndIf Next _ArrayDisplay($Link_Array) Edited October 7, 2007 by Thatsgreat2345
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