I am having issues with a script that I had created that is using the #include <IE.au3> options and having a bit of an issue. I have a couple sites that require the 32 bit version of IE, but the script is launching the 64 bit version. Because of this, the sites come up but have errors. Is there a way to force it to launch with the 32 bit version of IE?
Here is what I have for sample code (actual url's edited)
#include <IE.au3>
Const $navOpenInNewTab = 0x0800
Dim $o_IE = _IECreate('http://www.google.com')
$o_IE.Navigate2('http://www.msn.com' $navOpenInNewTab)
The rest of the code works, it is just opening the wrong version of IE.
Thank you for any help!