Jump to content

buckeyexp

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by buckeyexp

  1. Dale, Is there a way to catch a navigation error. For example if the web page is not found and returns 404 how could i set an error? on MSDN i read about a NavigateError Event, but i havent figured out how to implement it. http://msdn.microsoft.com/library/default....netexplorer.asp
  2. TO ANSWER MY OWN QUESTION: #include <IE.au3> $o_IE = _IECreate () _IENavigate ($o_IE, "http://autos.msn.com") _IELoadWait($o_IE) $o_Form = _IEFormGetObjByName ($o_IE, "LeftNavForm") $o_make = _IEFormElementGetObjByName ($o_Form, "mmMakes") $length = _IEFormElementOptionGetCount($o_make) For $i = 1 to $length $blah = $o_make.options($i).text If $blah = "Honda" Then $o_make.options($i).selected = True ExitLoop Else EndIf Next
  3. Thanks Dale works great. I was using [] instead of (). Is there a way to select an option based on its text instead of location? I have come to find out that the location of the options can change. So i need a safer way of selecting the correct option.
  4. is there a way to choose a drop down option if the values are not declared? <FORM action=/cgi-bin/gafx_info method=post> <B>Delete after transmission? </B> <SELECT size=1 name=delete> <OPTION selected>YES</OPTION> <OPTION>NO</OPTION></SELECT> </FORM> how do i select the NO option. I tried _IEFormElementSetValue() with values of "NO" and 2. Neither worked. $o_AFX_delete = _IEFormElementGetObjByName ($o_AFXFileSendForm, "delete") _IEFormElementSetValue ($o_AFX_delete, "NO") I was wondering if anybody has encountered this and found a workaround.
  5. Where is MAY??
  6. Is there anyway to retrieve information from a progress bar. I want to click on a button when the progress is 80% done. But i dont know if it is possible to retrieve that information from another program.
  7. What is the passphrase for if there isnt a decompiler. If there is a way to get the source code from the EXE using the passprhase let me know
×
×
  • Create New...