Jump to content

Recommended Posts

Posted

I have multiple scripts all using different IE Objects, so if I have 6 scripts running simultaneously there will be 6 different IE windows open..

So what I want to know is, if its possible at all to have one instance of IE running and have all 6 scripts working simultaneously but in different Tabs on the same IE window Object..??

Is anything like this possible at all with AutoIt..??

Posted

You can use _IEAtach to attach to any or all of the tabs.

Lets say you have 3 tabs: - yahoo , google , microsoft

$oIE1 = _IEAttach("http://uk.yahoo.com/?p=us", "url")
$oIE2 = _IEAttach("http://google.com", "url")
$oIE3 = _IEAttach("http://microsoft.com", "url")

If you want to navigate away from the microsoft site you can do:

_IENavigate ($oIE3, "http://www.autoitscript.com/forum/index.php?")
  • 1 month later...
Posted

Is there anyway to Close the new Tab I opened using this..??

$oIE.Navigate2("http://google.com", 2048)

$oIE = _IEAttach("http://google.com", "url")

How do I Close this Tab..??

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