The page shown in the link above displays a bunch of Flash .swfs in strips. The Flash acts as a button and links to a smaller javascript popup window which holds a plain old html page which happers to have a QT player embedded on it.
To verify that, use this address, which appears at the top of the small popup window:
http://www.basism.com/popup/colacao.htm
Without the javascript to control the size, it opens in your normal size window. When you see the QT player in the small windows it's because the .js is controlling the Web browser window and it has nothing to do with the QT palyer itself. They just matched the window size to that of the video.
Code:
<object width="400" height="316" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" align="top">
<param name="cache" value="false">
<param name="src" value="../mov/colacao.mov">
<param name="autoplay" value="true">
<param name="controller" value="true">
<embed width="400" height="316" src="../mov/colacao.mov" align="top" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" controller="true" autoplay="true" cache="false" ></embed>
</object>
JS popup windows very easy to create, for example:
Code:
<h2><span class="style1">Use this link to access on-line video tutorials </span><a onclick="javascript:window.open('http://www.cidigitalmedia.com/tutorials/wbc_tuts.html','_blank','height=700, width=1000,resizable=no,location=no');return false;" href="wbc_tuts.html">CLICK HERE TO WATCH</a></h2>
Use that in your Flash button or on the html page to link to your small (or whatever size) window.
Google javascript popup windows for params and more info.
Best wishes,
Eye for Video
www.cidigitalmedia.com