Jump to content

IE.au3, Windows 7 (64-bit) Edition


litlmike
 Share

Recommended Posts

What is the 'smartest' way to launch IE 8 (32-bit) on Windows 7 (64-bit) and use IE.au3 at the same time?

I have found that sometimes even simple scripts do not work well with IE 8 (64-bit), that work fine with the 32-bit version, so I want to just use the 32-bit version for now.

I am thinking that I could maybe use Run(), ShellExecute, or modify IE.au3 potentially, but what do you think would be the best practice in this case? For exmaple, how would I change the script below? Thanks

$oIE = _IECreate("www.Example.com", 1)
;Step 1, Enter Login
$oForm = _IEFormGetObjByName($oIE, "loginForm")
$oUserName = _IEFormElementGetObjByName($oForm, "loginName")
_IEFormElementSetValue($oUserName, "login")
$oSubmitButton = _IEFormElementGetObjByName($oForm, "Submit")
_IEAction($oSubmitButton, "click")
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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...