Hey,
I've digged around the forum & IE.AU3 help page though unsuccessfully finding what I was looking for… Basically, I need to save ONLY the URLs found in the body of the displayed page.
Up-to-now, the script saves the URLs but also the whole body (which include tons of garbage)...
Is there a way to specify in IEBodyReatText to only grab the URLs without all the additional garbage?
Local $oIE, $i = 1
While 1
$oIE = _IEAttach('', 'Instance', $i)
If @error Then ExitLoop
FileWrite($sDir & $sDateTime & '\Instance ' & $i & '.txt', _IEPropertyGet($oIE, 'locationurl') & @CRLF & @CRLF & _IEBodyReadText($oIE))
$i += 1
WEnd