Jump to content

Recommended Posts

Posted

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

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

Posted
_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:

  Reveal hidden contents

 

Posted

  On 1/29/2013 at 3:43 PM, 'water said:

_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

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

Posted

Glad to be of service :D

My UDFs and Tutorials:

  Reveal hidden contents

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...