Tiger 0 Posted September 6, 2007 (edited) I wrote a script. The script read the ie-window to an array #cs ---------------------------------------------------------------------------- AutoIt Version: 3.2.7.1 (beta) Author: Tiger Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- #include <Array.au3> #include <IE.au3> $array = _IEReadToArray("http://www.autoitscript.com/autoit3/files/beta/update.dat") _ArrayDisplay($array) Func _IEReadToArray($s_url) Dim $ie_array $oIE = _IECreate($s_url, 0, 0) $sText = _IEBodyReadText ($oIE) $ie_array = StringSplit(StringStripCR($sText), @LF) Return $ie_array EndFunc ;==>_IEReadToArrayIEReadToArray.au3 Edited September 6, 2007 by Tiger My UDFs:- _RegEnumKey Share this post Link to post Share on other sites
big_daddy 20 Posted September 7, 2007 I think _IEBodyReadToArray() would be more an appropriate name. Share this post Link to post Share on other sites