walle Posted August 4, 2007 Posted August 4, 2007 (edited) How do I recive the adress of this link? "_IELinkClickByIndex ($oIE, 45)" Made a atempt $Readlink = _IELinkClickByIndex ($oIE, 45) $url = "$Readlink" $oIE = _IECreate($url, 0); Open a new window/link //Walle Edited August 4, 2007 by walle
PsaltyDS Posted August 4, 2007 Posted August 4, 2007 Like this, since you know the index: $oLink = _IELinkGetCollection($oIE, 45) $sURL = $oLink.href ConsoleWrite("Debug: $sURL = " & $sURL & @LF) $oIE = _IECreate($sURL, 0); Open a new window/link Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
walle Posted August 4, 2007 Author Posted August 4, 2007 Like this, since you know the index: $oLink = _IELinkGetCollection($oIE, 45) $sURL = $oLink.href ConsoleWrite("Debug: $sURL = " & $sURL & @LF) $oIE = _IECreate($sURL, 0); Open a new window/link That worked like a charm! Really, thx u!
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