b0x4it Posted December 7, 2012 Posted December 7, 2012 I am running the following code: #include<IE.au3> $sUrl = "http://www.google.com" $oIE = _IECreate($sUrl, 0, 0, 0, 0) _IEPropertySet ($oIE, "menubar", 0) _IEPropertySet ($oIE, "addressbar", 0) _IEPropertySet ($oIE, "statusbar", 0) _IEPropertySet ($oIE, "toolbar", 0) _IEPropertySet ($oIE, "silent", 0) _IEPropertySet ($oIE, "resizable", 0) _IENavigate ($oIE, $sUrl) _IELoadWait ($oIE) It works perfectly when there is no Maxthon opened. But, once I open a Maxthon instance, this code opens a new tab in Maxthon and loads google in it. what's wrong and any solution? thanks in advance for your reply!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now