My problem is really quite simple.
<script>
<!--
function PlayIt(anObj)
{
if(navigator.appName == "Microsoft Internet Explorer")
document.m.filename = anObj;
else
{
document.m.src = anObj;
document.m.play(true);
}
}
//-->
</script>
I just want a media player that can play a bunch of files, not necessarily a playlist though.
The issue is that when I call this method the <embed>'s src apparently does not actually get assigned anything. If it did, the media player's PLAY button would light up and the file would begin to playc ... correct?
My issue is mainly with FireFox, because it is more popular than netscape and one fix will probably fix both browser's issues. IE works nice.