Gianni Posted January 29, 2013 Posted January 29, 2013 hello all I would need to view some properties of an "iexplore" instance running in "kiosk" mode on the computer by the _IEPropertyGet(ByRef $o_object, $s_property) command; how can i get the "$o_object" from the already running iexplorer? thanks a lot Pincopanco Chimp small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....
water Posted January 29, 2013 Posted January 29, 2013 _IEAttach Attach to the specified instance of Internet Explorer where the search string sub-string matches (based on the selected mode). 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
Gianni Posted January 29, 2013 Author Posted January 29, 2013 _IEAttach Attach to the specified instance of Internet Explorer where the search string sub-string matches (based on the selected mode). thanks "water" with the _IEAttach() function i solved! my problem was to get the the "$o_object" reference to iexplore.exe without any "windows title", "text", or other properties of the running browser in "kiosk" mode; with the many options of _IEAttach() i had the hook in this way: #include <IE.au3> $ie_handle1 = winactivate("[CLASS:IEFrame]") ; get iexplore handle $oIE = _IEAttach($ie_handle1 ,"HWND" ) ; reference to $o_object ConsoleWrite( _IEPropertyGet( $oIE, "locationurl") & @crlf) ; url of the displayed web page many thanks again Water bye Pincopanco Chimp small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....
water Posted January 29, 2013 Posted January 29, 2013 Glad to be of service 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