home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEAction.au3 < prev    next >
Encoding:
Text File  |  2006-07-14  |  589 b   |  13 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser with the "form" example, get a reference
  3. ;                to the submit button by name and "click" it. This technique
  4. ;                of submitting forms is useful because many forms rely on JavaScript
  5. ;                code and "onClick" events on their submit button making _IEFormSubmit()
  6. ;                not perform as expected
  7. ; *******************************************************
  8. ;
  9. #include <IE.au3>
  10. $oIE = _IE_Example ("form")
  11. $oSubmit = _IEGetObjByName ($oIE, "submitExample")
  12. _IEAction ($oSubmit, "click")
  13. _IELoadWait ($oIE)