Inserting a QuickTime (.mov) video into your web page is simple.  Please follow the instructions below:
  1. While editing a webpage, you will need to change the mode of the HTML Editor from Design mode into HTML mode. To change the mode, go to the bottom left hand-side of the Editor and click on the  . This view will show you the HTML generated while working in design.  If you have not done any work while in design you will see a blank text box ready for input.  To go back into Design mode, click on the .  You can switch between modes as needed.
  2.  Once the Editor is in HTML mode, you will need to copy & paste the object and embed tags provided below:
    <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="320" height="256">
    <param name="src" value="http://cdn.files.3rdl.com//file.ashx
    {YOUR_FILE_ID}">
    <param name="autoplay" value="true">
    <param name="type" value="video/quicktime" height="256" width="320">
    <embed src="http://cdn.files.3rdl.com//file.ashx
    {YOUR_FILE_ID}" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" width="320" height="256">
    </object>
  3. Once you have pasted the object & embed tags into the editor, you will need to change the {YOUR_FILE_ID} to the fid of the movie.  You can get this fid, by inserting the link from My Portfolio.  Once the link is inserted, you will see the following (in HTML mode):
    <a href="http://cdn.files.3rdl.com//file.ashx176308" tooltip="" target="_new">SampleVideo.wmv</a>

    Once you have extracted the fid from the link, you can remove the inserted link from the editor.


Once completed, the movie will be visible by clicking save and viewing the page on your website.  Below is a sample of the movie:


.
.