Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Flash MP3 Player

Status
Not open for further replies.

Linda224

Programmer
Dec 6, 2006
80
US
I created a flash mp3 player and it works perfect if i open up the html page that flash generates. But if i try to copy this into my template page it does not play. All the animation on the controls work but the music does not play.
Any suggestions
thank you
 
Most likely a path problem...

Try adding mp3player to your .xml path in your player.swf...

xml.load("mp3player/songs.xml");

You might even need to add it in your .xml itself...

<?xml version="1.0" encoding="UTF-8"?>
<songs>
<song url="mp3player/noteveo.mp3"/>
<song url="mp3player/SexyBack.mp3"/>
<song url="mp3player/ShakeYourTailfeather.mp3"/>
</songs>

Regards. FLASH HELP - OPENED FOR BUSINESS!
TO GET YOUR OWN FREE WEBSITE HOSTING
 
i tried to put the path in like you suggested and it still did not play the music

i tried this also
<?xml version="1.0" encoding="UTF-8"?>
<songs>
<song url="<song url="<song url="</songs>


and still no music
:(
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top