ShonGail Posted August 9, 2006 Share Posted August 9, 2006 Hello all I would open an URL with navigator defined by the user as default navigator (IE, Firefox, ...) I know how launch a navigator with the URL as a parameter but I don't know how retrieve the name of default navigator or how open an URL without navigator specified. Thank you Link to comment Share on other sites More sharing options...
yoop Posted August 9, 2006 Share Posted August 9, 2006 #include <Process.au3> $rc = _RunDos("start Http://www.autoitscript.com") Link to comment Share on other sites More sharing options...
ShonGail Posted August 9, 2006 Author Share Posted August 9, 2006 #include <Process.au3> $rc = _RunDos("start Http://www.autoitscript.com") Yes ! Thank you very much Link to comment Share on other sites More sharing options...
Knight Posted August 9, 2006 Share Posted August 9, 2006 (edited) $File = "http://www.autoitscript.com" Run(@ComSpec & " /c Start " & FileGetShortName($File), "", @SW_HIDE) That will run any file/page in default program. Edited August 9, 2006 by Knight Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted August 9, 2006 Moderators Share Posted August 9, 2006 $Url = "http://www.autoitscript.com" DllCall("shell32.dll", "long", "ShellExecute", "hwnd", 0, "string", 'open', "string", $Url, "string", '', "string", @ScriptDir, "long", @SW_SHOWNORMAL) Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Link to comment Share on other sites More sharing options...
Bert Posted August 10, 2006 Share Posted August 10, 2006 ok, how many ways can this be done???? The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
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