Date: Tue Jun 30 12:39:00 MST 1998 From: Jim Zimmerman <jim@digivation.com> Subject: Launch browserI have been looking for a way to launch a browser and then go to a web page. At first i used open "index.html" with Browsername() and it would work, but when i went to launch another site while the browser was open it wouldn't open a second file. I searched everywhere and was about ready to buy the masterApp Xtra but then all of sudden i accidently ran into something. You can just use net lingo and it will work like the following below:
on mouseUp
GoToNetPage "http://www.yourname.com/"
end
Or you can view html files off the cd or hard drive with this code on Mac
on mouseUp
GoToNetPage "file:///harddrive/path/file.html"
end
Or you can view html files off the cd or hard drive with this code on Windows
on mouseUp
GoToNetPage "C:\harddrive\path\file.html"
end