Hello,
Firstly, I'm so new to Autoit it's not even funny...like one week new! So please judge me and my code accordingly.
I am working on a script to navigate an intranet site in IE, this is a work site. I have navigated the previous pages just fine, but I'm stuck on this one. So I have an image that I want to click that will bring up a simple form. The form seems to be popup java type if I see it correctly. I have used _IEImgClick on the previous pages and it worked fine.
Here is the error I get...
Code...
;Load advisor listing page and click dashboard excel icon <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
$oIE = _IEAttach("Client Search","Title")
_IELoadWait($oIE, 500)
_IEImgClick($oIE,"export","alt")
image properties...
<input name="ReportToolbar1$ibtnExport" title="export" align="middle" id="ReportToolbar1_ibtnExport" style="border-width: 0px; width: 16px; height: 16px;" onclick="showExportForm(document.all.ReportToolbar1_pnlExport); return false;" type="image" alt="export" src="/AGILEnet5/WebResource.axd?d=0Av7yaBdB_jbbY94wxoF6j3OUkFxaO3uQTeFJDfRuz8HGGK5uAeph7vHRfUIvZYraMAHF-ZPkfGKXzC_rkgOKABL9yaflfhliaJFJK0oPKOfUs2FHwmgZJYCe6wrC_nA8FgJ68LHSVjd5J1aqa94Z3GkviM1&t=635758492040783645"></input>
Thank you