Click to See Complete Forum and Search --> : Playlist Issue... Player won't load it. Please Help!


alanos206
01-24-2008, 01:31 PM
Have a flash media player embedded into HTML page. The player displays fine but continuously says that its "Loading Playlist". It never does it.

Any help is greatly appreciated.

Here is the code.

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000" background="yt_background_story.jpg">
<object type="application/x-shockwave-flash" width="400" height="170"
data="player/WinMusicPlayer/xspf_player.swf?playlist_url=playlist.xspf">
<param name="movie"
value="player/WinMusicPlayer/xspf_player.swf?playlist_url=playlist.xspf"/>
</object>
</body>
</html>

djanusev
03-06-2008, 06:39 PM
Hi there
You need to upload the player(xspf_blacksilver.swf) and the playlist (playlist.xspf) to your web site and using the code below to emded it on the web site. Replace the CAPS TEXT in the code with the path to your files on the host server.

<object type="application/x-shockwave-flash" width="475" height="163"
data="MY PATH TO XSPF PLAYER/xspf_blacksilver.swf?playlist_url=MY PATH TO PLAYLIST/flashradio/playlist.xspf"
align="center">
<param name="movie"
value="MY PATH TO XSPF PLAYER/xspf_blacksilver.swf?playlist_url=MY PATH TO PLAYLIST/playlist.xspf"
/>
</object>


Here is a link with more explanation if needed
http://www.ic.sunysb.edu/stu/ahanley/music/help.htm

Hope it helps