Jump to content

Script Fails At IE File Open Dialog


Recommended Posts

Hi All,

I have a script which uses _IEAction() to click on a "Browse..." button and I then get a "Choose File to Upload" dialog. However, after the the _IEAction() call, my script does not run anything else. It cannot detect the dialog window and it just seems to freeze up and run nothing after that line. Does anyone know what might be happening here? I posted on this page which seems to be the exact same issue, but there has been no activity in a long time and no one is following it so I thought I would open a new topic. Any help would be great!

Thanks

Link to comment
Share on other sites

  • 1 year later...

Can you both show us the element you are trying to click on?

Also, both please post your code to show was has been done, so that we can get a true idea of what you are both doing. :D

EDIT: DaleHolm did give a good example in the last topic to interact with a dialog window:

#include <IE.au3>
$oIE = _IE_Example("form")
$oT = _IEGetObjById($oIE, 'fileExample')
MouseMove(_IEPropertyGet($oT, "screenx") + _IEPropertyGet($oT, "width") - 10, _
          _IEPropertyGet($oT, "screeny") + _IEPropertyGet($oT, "height")/2) MouseClick("left")
WinWait("Choose File to Upload")
$hChoose = WinGetHandle("Choose File to Upload")
ControlSetText($hChoose, "", "Edit1", "C:\AUTOEXEC.BAT")
ControlClick($hChoose, "", "Button2")
Edited by MikahS

Snips & Scripts


My Snips: graphCPUTemp ~ getENVvars
My Scripts: Short-Order Encrypter - message and file encryption V1.6.1 ~ AuPad - Notepad written entirely in AutoIt V1.9.4

Feel free to use any of my code for your own use.                                                                                                                                                           Forum FAQ

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...