kctvt Posted September 21, 2009 Posted September 21, 2009 How to Maximize Windows Internet Explorer ? Um.... i'm using control click for my code, and before use control click, i want Windows Internet Explorer maximize.... so, what i have to do ?
jvanegmond Posted September 21, 2009 Posted September 21, 2009 Step 1. Open the help file Step 2. Look up function WinSetState Step 3. Read examples Step 4. Copypasta github.com/jvanegmond
Bert Posted September 21, 2009 Posted September 21, 2009 He may want to use the f11 key to do the full screen thing. If that is the case, _IEPropertySet using "theatermode" The Vollatran project My blog: http://www.vollysinterestingshit.com/
kctvt Posted September 21, 2009 Author Posted September 21, 2009 thanks Manadar . I finished my programe
epicfail Posted September 30, 2009 Posted September 30, 2009 (edited) how do u get _IEPropertySet ($oIE, "theatermode") to work i cant seem to get it working Edited September 30, 2009 by epicfail
water Posted September 30, 2009 Posted September 30, 2009 Something like: #include <IE.au3> $oIE = _IE_Example ("basic") _IEPropertySet ($oIE, "theatermode", True) The help file is your friend My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
epicfail Posted September 30, 2009 Posted September 30, 2009 it dosnt really say in the help file about the true part i dint see it anyway thanks man
water Posted September 30, 2009 Posted September 30, 2009 it dosnt really say in the help file about the true part ...Sure it does _IEPropertySet ($o_object, $s_property, $newvalue )needs three parameters. The IE object, the property to change and the new value to be set. When you look in the table "Browser Properties" and search for "theatermode" you can read: "Specifies a Boolean value indicating whether the browser is in Theater Mode."So to change the browser to theater mode you have to set this property to the Boolean Value TRUE or 1 My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
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