MAS Posted November 2, 2011 Posted November 2, 2011 (edited) hello all I want to open a webpage but in silent mode that dont show any messages coming from webpages I've used _IEPropertySet function to make it silent but message boxes still popup maybe I wrote the function in wrong way here's my simple code ::: #include <IE.au3> $oIE = _IECreate ("http://www.autoitscript.com") _IEPropertySet ($oIE, "silent", True) thanks for any help Edited November 2, 2011 by MAS
Zedna Posted November 2, 2011 Posted November 2, 2011 _IECreate ( [$s_Url = "about:blank" [, $f_tryAttach = 0 [, $f_visible = 1 [, $f_wait = 1 [, $f_takeFocus = 1]]]]] )set $f_visible = 0 $oIE = _IECreate ("http://www.autoitscript.com", 0, 0) Resources UDF ResourcesEx UDF AutoIt Forum Search
MAS Posted November 2, 2011 Author Posted November 2, 2011 thanks for reply Zedna but $f_visible = 0 make IE invisible i want to disable msg boxes displayed in webpages
Blue_Drache Posted November 2, 2011 Posted November 2, 2011 You can't honestly trap for that. There's far too many methods of popping up a dialogue box.... and far too many answers. It's not a simple ... testable binary answer. Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache
Zedna Posted November 2, 2011 Posted November 2, 2011 You can configure your IE to not be so strict for trusted/untrusted zone and similar security options. You can also use AdLib to automatically click on popup messageboxes. Resources UDF ResourcesEx UDF AutoIt Forum Search
MAS Posted November 2, 2011 Author Posted November 2, 2011 (edited) ok thx Blue_Drache & Zednai will try that Edited November 2, 2011 by MAS
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