Jump to content

$oIE = _IEAttach (*, "Title")


Recommended Posts

$oIE = _IEAttach ("Google", "Title") -This works

But what if I don't always start the script with google already opened and I don't want to create a new IE?

Can I use a wild card?

$oIE = _IEAttach (*, "Title") -Doesn't work

$oIE = _IEAttach ("*", "Title") -Doesn't work

Link to comment
Share on other sites

#include <IE.au3>

$sText = RegRead("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\", "Window Title")
$oIE = _IEAttach($sText, "WindowTitle")

That will only ever return the first IE window though.

IE Dev ToolbarMSDN: InternetExplorer ObjectMSDN: HTML/DHTML Reference Guide[quote]It is surprising what a man can do when he has to, and how little most men will do when they don't have to. - Walter Linn[/quote]--------------------[font="Franklin Gothic Medium"]Post a reproducer with less than 100 lines of code.[/font]
Link to comment
Share on other sites

Or

$oIE = _IEAttach("Google")

If @error = $_IEStatus_NoMatch Then $oIE = _IECreate("http://www.google.com")

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

-Mike -that is exactly what I was hoping to do :) I was guessing there was a way since it appears in the task bar

-Dale -Thanks for all your help. I will be posting the completed script in the example scripts section shortly:) hope no one takes offense to helping others with gags :P

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...