Open website with the users
default web browser:
website$ = "http://www.thegamecreators.com"
execute file website$,"","",0
To open with Firefox you would need to be 100% sure that the user has Mozilla Firefox installed. Perhaps you could probe the Windows Registry using
Get Registry()?
[EDIT] @Comet
Just re-read this post. Was your question answered? Or were you after launching a website only in a particular browser? In which case this will do it for Internet Explorer:
browser$ = "C:\Program Files\Internet Explorer\iexplore.exe"
website$ = "http://www.thegamecreators.com"
execute file browser$,website$,"",0
You should keep in mind that your end user might not have a particular browser installed or installed at default location. So you'll have to do some testing if you want to go this route. Hope that helped you