Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to insert QTVR into Flash website?

Status
Not open for further replies.

aribert888

Programmer
Jan 12, 2003
11
DE
How can I insert a Quicktime .mov into my Flash Website and position it exactly? I guess that I have to first include it into a HTML page. Right? Or how?

Thanks for helping,
Aribert
 
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=&quot;MYQTVRMOVIE.mov&quot; width=&quot;MYWIDTH&quot; height=&quot;MYHEIGHT&quot; cache=&quot;true&quot;>

For a more robust version:

<object classid=&quot;clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B&quot; codebase=&quot; height=&quot;MYHEIGHT&quot; width=&quot;MYWIDTH&quot;>
<param name=&quot;cache&quot; value=&quot;true&quot;>
<param name=&quot;src&quot; value=&quot;MYQTVRMOVIE.mov&quot;>
<param name=&quot;autoplay&quot; value=&quot;true&quot;>
<param name=&quot;controller&quot; value=&quot;false&quot;>
<embed height=&quot;MYHEIGHT&quot; width=&quot;MYWIDTH&quot; pluginspage=&quot; src=&quot;MYQTVRMOVIE.mov&quot; type=&quot;video/quicktime&quot; controller=&quot;false&quot; autoplay=&quot;true&quot; cache=&quot;true&quot;>
</object>

Good luck!

Marc Johnson
multimedia guy
marcato multimedia
NYC
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top