Hi, I am using a mini MP3 player to play an MP3 file. It is working fine, but I need to play the MP3 file in a loop. I have added a variable loop
and set it to true
but it still doesn't loop.
<script type="text/javascript">
var so = new SWFObject("player.swf", "mp3player", "0", "0", "8", "#ffffff");
so.addVariable("file", "1-05_Concert_ alla_rustica.mp3");
so.addVariable("loop","true");
so.write("flashcontent");
</script>
How can I get this to work?