Opening html from an Enhanced CD in OS X...
August 11, 2005 11:16 PM
Subscribe
Intuitively directing the user to an html page on an Enhanced CD in OS X...
I'm putting together the master (for replication) of an audio CD, 'enhanced' with content consisting of a quicktime video embedded in an html page. I've got autorun working nicely for Windows boxen, but since I can't use autorun in OSX, what's the best solution to direct the user to opening the appropriate html file in safari. If they have html files associated with any sort of editor (As I do) simply double clicking the appropriate file won't do.
posted by adamkempa to computers & internet (6 comments total)
Double-clicking the script will open the target document in Safari:
tell application "Safari"activate
try
open "Volumes:CD Title:file.html"
end try
end tell
You'll find additional sample scripts over here.
posted by Rothko at 11:27 PM on August 11, 2005