everseeker Posted March 8, 2012 Share 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 Link to comment Share on other sites More sharing options...
DW1 Posted March 8, 2012 Share 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 Link to comment Share on other sites More sharing options...
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