Avatar for Username

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში. აქ არავინ უნდა მოგთხოვოთ ტელეფონზე დარეკვა, შეტყობინების გაგზავნა ან პირადი მონაცემების გაზიარება. რამე საეჭვოს შემჩნევისას გთხოვთ გვაცნობოთ „დარღვევის მოხსენებით“.

ვრცლად

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?

  • 3 პასუხი
  • 8 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 11 ნახვა
  • ბოლოს გამოეხმაურა cor-el

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?

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?

ყველა პასუხი (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.