Click to See Complete Forum and Search --> : embedded .avi jumps back to first frame


mago
11-29-2004, 03:54 AM
I think I maybe posted this thread in the wrong forum, so I'll try here instead...

--------------------------------

Hello,

For the first time I've tried to add a video to my website:

<html>
<body>

<embed src="movie.avi"></embed>

</body>
</html>


I have two questions:

1. The movie "jumps" back to the first frame when finished. I want to avoid this and instead show the last frame when the movie is done. Can this be achieved by adding some fancy attributes to the tag?

2. In what way does an object tag differ from an embed tag? Which one is preferable?

Thank you!

mago
11-30-2004, 07:03 PM
Ok, I figured it out. In case anyone else needs a solution this problem, here is what you need to do:

If you are using an <object> tag add the following:
<PARAM NAME="AutoRewind" VALUE="false">

If you are using an <embed> tag add:
autorewind="false"