Insert QuickTime into a Flash movie is one thing, but just putting QT into an HTML page is simple. Here's an extract with the minimal HTML to do it. Just insert this into your page, changing the name to the name of your .mov file:
<embed src="MYQTVRMOVIE.mov" width="MYWIDTH" height="MYHEIGHT" cache="true">
For a more robust version:
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="
height="MYHEIGHT" width="MYWIDTH">
<param name="cache" value="true">
<param name="src" value="MYQTVRMOVIE.mov">
<param name="autoplay" value="true">
<param name="controller" value="false">
<embed height="MYHEIGHT" width="MYWIDTH" pluginspage="
src="MYQTVRMOVIE.mov" type="video/quicktime" controller="false" autoplay="true" cache="true">
</object>
Good luck!
Marc Johnson
multimedia guy
marcato multimedia
NYC