Jump to content

get handle of IE to attach to


Recommended Posts

Hi,

I want to open a local html page. Then I want to get, with the title of that page, the corresponding handle. On that handle I want to attach an IE.

My problem is, that with every _IEnavigate a new window of IE is opened. I guess I have the wrong classname, but which one is the correct one ?

shellExecute ("iexplore.exe", @ScriptDir & "\lcgw_start.html")
WinWait ("LCGW - START")
Opt("WinTitleMatchMode", 4)
$IEhandle = WinGetHandle("classname=IEFrame", "lcgw")
$oIE = _IEAttach ($IEhandle, "HWnd")
_IELoadWait ($oIE)
_IENavigate ($oIE, "http://mydomain.com")
_IELoadWait ($oIE)

What is the correct classname so only one IE window is openend when I use _IENavigate.

Cheers Wolle

Cheers Wolle

Link to comment
Share on other sites

Hi,

I want to open a local html page. Then I want to get, with the title of that page, the corresponding handle. On that handle I want to attach an IE.

My problem is, that with every _IEnavigate a new window of IE is opened. I guess I have the wrong classname, but which one is the correct one ?

shellExecute ("iexplore.exe", @ScriptDir & "\lcgw_start.html")
WinWait ("LCGW - START")
Opt("WinTitleMatchMode", 4)
$IEhandle = WinGetHandle("classname=IEFrame", "lcgw")
$oIE = _IEAttach ($IEhandle, "HWnd")
_IELoadWait ($oIE)
_IENavigate ($oIE, "http://mydomain.com")
_IELoadWait ($oIE)

What is the correct classname so only one IE window is openend when I use _IENavigate.

Cheers Wolle

_IENavigate() does not normally open another browser window. I'm not sure how you would get it to do that. You could just replace that script with two lines of code:
#include <IE.au3>

$sURL = "file:///" & StringReplace(@ScriptDir & "\lcgw_start.html", "\", "/")
$oIE = _IECreate($sURL)
_IENavigate ($oIE, "http://mydomain.com")

The _IELoadWait() is done by default, and WinTitleMatchMode = 4 functionality has worked by default for the last several version of AutoIt (though it's not required here anyway).

:D

Edit: Modified demo to use proper "file:///" URL syntax.

Edited by PsaltyDS
Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

If you're running Vista, see the UAC notes for _IECreate in the helpfile or upgrade to IE8.

Dale

Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl

MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model

Automate input type=file (Related)

Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded  Better Better?

IE.au3 issues with Vista - Workarounds

SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y

Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?

Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble

Link to comment
Share on other sites

If you're running Vista, see the UAC notes for _IECreate in the helpfile or upgrade to IE8.

Dale

Thanks. Now I understood what the problem is, yes I use vista, will see how I will handle it.

Cheers Wolle

Cheers Wolle

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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