The LOOP commant in the <embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="FinalWalnut2.avi" name="MediaPlayer1" autostart="1" loop="TRUE" autosize="1" showcontrols="0" > does not work in FF. Why?
I use the <embed .....> and <object....> commands to play an avi file on my website in a loop. The loop command in the active x <object> worsk fine but does not work in FF <embed> command. How can I loop an avi file (so it plays continuously) in FF?
Svi odgovori (3)
EMBED doesn't support loop.
You can use playcount instead.
<embed src="sound_url" type="application/x-mplayer2" autostart="1" playcount="99" height="0" width="0">
Thank you so much cor-el. Yes, it works with the playcount. Appreciate your help.
You're welcome