OK, one more question then I will be done (i hope!)
Here is the structure for what I want to click (not in a frame or anything)
<html>
<body>
<div id = mainframe>
<div>
<table>
<tbody>
<tr>
<td>
For some reason when I try to drill down to the table, I am getting the collection of 33 tables on the page, not just the one i want.
$framesrc = _IEGetObjById($oie, "mainFrame")
$headerdiv = _IETagnameGetCollection( $framesrc , "div", 0)
$table = _IETableGetCollection($headerdiv,0)
$oInputs = _IETagNameGetCollection($table,"td")
For $oInput In $oInputs
$test = _iepropertyget($oInput, "innerhtml")
if $test = "RESFRESH" then $refresh = $oInput
Next
_ieaction($refresh, "click")
thoughts?
$cnt = @extended
msgbox(0,0,$cnt)