Click to See Complete Forum and Search --> : .MOV files in a web page


skipper1897
07-09-2003, 03:33 PM
I can not get the .mov file to play. Is there something i am missing from this code?

<HTML>
<HEAD>
<TITLE>Automist Movie</TITLE>
</HEAD>


<body >

<embed src="../Graphics/automist.MOV" alt="Automist Movie" width="300" height="250" align="middle" controls="console" autostart="true">

</BODY>
</HTML>

Please tell me what I need to do to get this movie to play.
Thanks,
Skipper

fla5hba5h
07-09-2003, 07:14 PM
Are you sure the .mov file is "graphics"?

Robert Wellock
07-10-2003, 08:36 AM
Similar to the following although the <embed> method is proprietary and unofficial method.

<object data="http://www.somesite.com/somemovie.mov" type="video/quicktime" width="200" height="200">
<embed src="http://www.somesite.com/somemovie.mov" type="video/quicktime" width="200" height="200" />
</object>

skipper1897
07-20-2003, 10:12 AM
Thanks, I've got it now!