Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/17/2012 in all areas

  1. Why would your co-workers need to have any knowledge of AutoIt to run your scripts? Also, it's faster for me to cobble together an AutoIt script than a batch file, mainly because I haven't used batch files in a long time except for very basic tasks. The point JLogan was asking was, why use 2 languages to do something that one can do all on it's own?
    1 point
  2. Your Welcome. Google isn't necessary, it should be in autoit's help file.
    1 point
  3. I have not seen one myself, though someone who actually does more in IE may wander by and prove me wrong. I would say that if you're willing to leave a language because you can't click on a Save As button, and don't want to take the time to figure out a workaround, you probably won't find what you're looking for anyway
    1 point
  4. #include <Excel.au3> #include <IE.au3> #include <Array.au3> $oIE = _IECreate() _IENavigate($oIE, "http://www8.tax.ny.gov/UTLR/utlrHome") $o_form = _IEFormGetObjByName($oIE, "UTLRForm") $o_addr = _IEFormElementGetObjByName($o_form, "UTLR_STREETADDRESS_KEY") $o_zip = _IEFormElementGetObjByName($o_form, "UTLR_ZIPCODE_KEY") $o_type = _IEFormElementGetObjByName($o_form, "UTLR_SERVICETYPE_KEY") _IEFormElementSetValue($o_addr, "136 Maple Avenue") _IEFormElementSetValue($o_zip, "10952") _IEFormElementSetValue($o_type, "Residential energy services") _IEFormSubmit($o_form) $aJurisdictionCodes=StringRegExp(_IEBodyReadText ( $oIE ),'Jurisdiction code:(.*)',3) _ArrayDisplay($aJurisdictionCodes)
    1 point
  5. That one doesn't work right on windows 7 (any version).
    1 point
  6. Now you just need to figure out how to use the [autoit] and [/autoit] tags when posting code.
    1 point
×
×
  • Create New...