boaster Posted May 17, 2006 Posted May 17, 2006 I searched the help file but couldn't find a way to use AutoIt to launch internet explorer and open a specific URL. If I do "Run("www.amazon.com")" for example, it errors out. I'm sure I'm missing something obvious. Thanks
slightly_abnormal Posted May 17, 2006 Posted May 17, 2006 try this.. Run("explorer.exe " & "http://www.amazon.com")
BigDod Posted May 17, 2006 Posted May 17, 2006 Another example straight from help file #include <Process.au3> $rc = _RunDos("start Http://www.autoitscript.com") Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
Valuater Posted May 17, 2006 Posted May 17, 2006 i use this $web_loc = "http://www.autoitscript.com" Run(@ComSpec & " /c Start " & $web_loc, "", @SW_HIDE) no includes and runs the default browser 8)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now