everseeker Posted March 8, 2012 Posted March 8, 2012 I need to reset the Zoom level to 100% before loading a web page. I am unable to pass keys into this particular page, so the Cntl-* trick will not work. is there anything else? Everseeker
DW1 Posted March 8, 2012 Posted March 8, 2012 Hi everseeker, Yes, you can set the zoom level using execWB() #include <IE.au3> $OLECMDID_OPTICAL_ZOOM = 63 $OLECMDEXECOPT_DONTPROMPTUSER = 2 $oIE = _IECreate('www.google.com') $oIE.execWB($OLECMDID_OPTICAL_ZOOM, $OLECMDEXECOPT_DONTPROMPTUSER, 150) TheOne23 and Eemuli 2 AutoIt3 Online Help
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