Hi folks,
This question has been asked plenty of times, however I couldn't find the information I needed when I searched. Basically, I want a cross-browser embedded movie with support at least for IE and FireFox. The catch is, I'd like to have the movie paused at the first frame. So instead of seeing a black box, you see the first frame of the movie that's going to play. I've figured that bit out myself, however FireFox doesn't like my OBJECT tag and doesn't seem to like the EMBED tag within it. Any chance you folks could steer me in the right direction? Here's my code:
Thanks your your time!!
This question has been asked plenty of times, however I couldn't find the information I needed when I searched. Basically, I want a cross-browser embedded movie with support at least for IE and FireFox. The catch is, I'd like to have the movie paused at the first frame. So instead of seeing a black box, you see the first frame of the movie that's going to play. I've figured that bit out myself, however FireFox doesn't like my OBJECT tag and doesn't seem to like the EMBED tag within it. Any chance you folks could steer me in the right direction? Here's my code:
Code:
<OBJECT width="300" height="250"
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
type="application/x-oleobject">
<PARAM name="URL" value="movie.wmv">
<PARAM name="AutoStart" value="true">
<PARAM name="currentPosition" value="36"
<PARAM name="uiMode" value="mini">
<PARAM name="AutoRewind" value="true"
<PARAM name="PlayCount" value="1">
<EMBED src="movie.wmv" showcontrols="true" autostart="true"></EMBED>
</OBJECT>
Thanks your your time!!