Info Posted September 1, 2010 Share Posted September 1, 2010 (edited) How do I do it? Here's the function I use the get the link collection. $Links = _IELinkGetCollection($oIE) I need the URL of the fifth link. Edited September 1, 2010 by Info Link to comment Share on other sites More sharing options...
wakillon Posted September 1, 2010 Share Posted September 1, 2010 How do I do it? Here's the function I use the get the link collection. $Links = _IELinkGetCollection($oIE) I need the URL of the fifth link. Try this $oLinks = _IELinkGetCollection ($oIE) If @extended >= 5 Then $_I=0 For $oLink In $oLinks $_I = $_I +1 If $_I = 5 Then MsgBox ( 0, "Link Info", $oLink.href ) Next EndIf AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Link to comment Share on other sites More sharing options...
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