#include #include #include $oIE = _IECreate("http://www73.pair.com/bgw/applets/1.02/ListDemo/ListDemo.html") WinWait("ListDemo") $button1_text = _TextractCapture("ListDemo", "", "[CLASS:Button; INSTANCE:1]", "") MsgBox(0, "_TextractCapture.au3", $button1_text) $combobox1_edit_text = _TextractCapture("ListDemo", "", "[CLASS:ComboBox; INSTANCE:1]", "") MsgBox(0, "_TextractCapture.au3", $combobox1_edit_text) $combobox1_text = _TextractCapture("ListDemo", "", "[CLASS:ComboBox; INSTANCE:1]", @CRLF) _ArrayDisplay($combobox1_text) $listbox1_text = _TextractCapture("ListDemo", "", "[CLASS:ListBox; INSTANCE:1]", @CRLF) _ArrayDisplay($listbox1_text) WinClose("ListDemo") _IEQuit($oIE)