View Full Version : quictime in window within page?
I' a full of questions today....Ha. Can anybody point me to a tutorial or explain how it is possible to have your QT movie play on you site page instead of zipping off to that place with all the white real estate surrounding it? I want a little box within the page that is the same size as the film. Do I make myself as clear as an ubmuddied lake or an azure sky of deepest summer?:)
In Flash that is!
Kirk Gillock
07-24-2005, 11:53 AM
Not sure about embedding in Flash. But this might help.
http://www.oreillynet.com/pub/a/javascript/excerpt/learnwebdesign_chap22/
Good luck!
pk
CaptainMench
07-24-2005, 01:03 PM
You could always find a page you like and then use the View Source feature on your browser.
This will show you what code you need to create THAT page, but NOT how to get there from the original page. If that helps.
Here's one from one of my pages:
<html>
<head>
<title>Mench - Family movie</title>
</head>
<body bgcolor="#6F7A9E" text="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" link="#99CCFF" vlink="#9999FF">
<center>
<p><img src="WebPage/SigFile3B.jpg" alt="" height="100" width="400" border="0"></p>
<p>A Portion of Thyself</p>
<p><OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" WIDTH="720" HEIGHT="556" align="top">
<param name="cache" value="true">
<PARAM NAME="src" VALUE="Squaw.mov">
<PARAM NAME="autoplay" VALUE="true">
<PARAM NAME="controller" VALUE="false">
<PARAM NAME="loop" VALUE="false">
<EMBED SRC="WebPage/Zachary.mov" WIDTH=960 HEIGHT=556 scale="1.5" LOOP=false align="top" AUTOPLAY=true CONTROLLER=true PLUGINSPAGE="http://www.apple.com/quicktime/" cache="true">
</EMBED>
</OBJECT>
<p><a href="http://homepage.mac.com/captmench">BACK</a></p>
</body>
</html>
If you go to my page below and click on one of the movies on the left you'll see what it does. Not flash -- I can't figure that out either.
Notice the scale code there too -- QT7 is great for letting you scale something and keep the quality.
CaptM