So i have a problem where i found a nice simple mp3 player that can play multiple files and it works perfectly fine until i put it in a blog post. I have tried very many different ways to get this working. I got the player to show up at least but it will not load the XML now i am not sure if this is my fault or what.
This is where i got the player as well. http://www.premiumbeat.com/flash_resources/free_flash_music_player/multiple_tracks_mp3_player_menu.php
This is the code i had to put in.
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashPlayer">
This text will be replaced by the flash music player.
</div>
<script type="text/javascript">
var so = new SWFObject("playerMultipleList.swf", "mymovie", "295", "200", "7", "#FFFFFF");
so.addVariable("autoPlay","no")
so.addVariable("playlistPath","playlist.xml")
so.write("flashPlayer");
</script>
And this is what i changed to make it show up in my blog post at least.
<script type="text/javascript" src="http://www.dotherevolution.org/music/faith+hope+love/swfobject.js"></script>
<div id="flashPlayer">
</div>
<script type="text/javascript">
var so = new SWFObject("http://www.dotherevolution.org/music/faith+hope+love/playerMultipleList.swf", "mymovie", "295", "200", "7", "#FFFFFF");
so.addVariable("autoPlay","no")
so.addVariable("playlistPath","http://www.dotherevolution.org/music/faith+hope+love/playlist.xml")
so.write("flashPlayer");
</script>
If you can please help me! I really want to figure this out.
Thank you in advanced :)