Does anyone know how to open a movie in QuickTime Player from a Flash website?
I’ve tried getURL(“blah.mov”, “quicktimeplayer”) but it just opens the movie in a browser window. I’m thinking maybe this can be accomplished by using Javascript and having the getURL go through that or something. My Javascript/Actionscript abilities are both limited though…
The QuickTime tutorial explains:
*When set, the QuickTime Plug-in will launch QuickTime Player as a helper application (if it is not already running) and opens the url of the movie file. In order for TARGET=“QUICKTIMEPLAYER” to work, there needs to be an href attribute in the embed tag which points to the movie file.
embed src=“poster.mov” width=“200” height=“240” href=“sample.mov” target=“quicktimeplayer”*
Thanks for any help.