Jump to content

Opening An IE window to a certain URL


Recommended Posts

Currently, i have to run IEXPLORER.EXE, then have it enter the url, is there a way to start IE to a url right off the bat?

[center]"When you look at old, classic games like Snake, you often put it off because it's such a simple game, but it's only when you actually try and create your own unique game from scratch, do you finally appreciate those games."[/center][center]Don't ask for answers if you haven't TRIED yet![/center][center]Most answers can be answered in the help file! Use it![/center]

Link to comment
Share on other sites

Download the latest beta and look in the help file under IE Management or just search the forums for IE.au3 by Dale.

IVAN

Extract from help file:

#include <IE.au3>

$oIE = _IECreate ("www.autoitscript.com")

Sleep(5000)

_IENavigate ($oIE, "http://www.autoitscript.com/forum/index.php?")

Sleep(5000)

_IENavigate ($oIE, "http://www.autoitscript.com/forum/index.php?showforum=9")

Edited by ivan
Link to comment
Share on other sites

thanks! both of you

[center]"When you look at old, classic games like Snake, you often put it off because it's such a simple game, but it's only when you actually try and create your own unique game from scratch, do you finally appreciate those games."[/center][center]Don't ask for answers if you haven't TRIED yet![/center][center]Most answers can be answered in the help file! Use it![/center]

Link to comment
Share on other sites

Run("iexplore http://www.autoitscripts.com")
can this be ran anywhere - as when I have tried this with and with out "" (quotes)

This is the ERROR - Unable to execute the external program.:

I would like to be able to run

RunWait("c:\program files\internet explorer\iexplorer.exe " & $URL)

I am able to use

$oInternet = ObjCreate("InternetExplorer.Application")

$oInternet.Visible = 1

$oInternet.Navigate ($a_Item[2])

All by me:

"Sometimes you have to go back to where you started, to get to where you want to go." 

"Everybody catches up with everyone, eventually" 

"As you teach others, you are really teaching yourself."

From my dad

"Do not worry about yesterday, as the only thing that you can control is tomorrow."

 

WindowsError.gif

WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF

AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send

StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2

AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit  Docs

SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF

Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language

Programming Tips

Excel Changes

ControlHover.UDF

GDI_Plus

Draw_On_Screen

GDI Basics

GDI_More_Basics

GDI Rotate

GDI Graph

GDI  CheckExistingItems

GDI Trajectory

Replace $ghGDIPDll with $__g_hGDIPDll

DLL 101?

Array via Object

GDI Swimlane

GDI Plus French 101 Site

GDI Examples UEZ

GDI Basic Clock

GDI Detection

Ternary operator

Link to comment
Share on other sites

$url = 'http://www.autoitscript.com/forum/index.php?showtopic=29727'
_RunDOS('start '&$url)

..that starts the webpage in the default browser, so unless you've specifically changed the default to Firefox (or some other browser) it should open in IE.

Edited by B3TA_SCR1PT3R

[right][font="Courier New"]...Run these streets all day, I can sleep when I die.[/font] [/right]

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