View Full Version : problem w/ playlist


lilkit10
08-31-2004, 02:56 AM
I'm doing my friend's website and I have a playlist on there but it isn't playing any music. Can you help me?
Here's the site:His Site (http://www.xanga.com/home.aspx?user=MiXed_BoY)

JiNgLeBeLLz77
08-31-2004, 04:12 AM
maybe you should use the playlist here... because the code you're using doesn't look too right...

http://www.createblog.com/forums/index.php?showtopic=34297

lilkit10
08-31-2004, 10:39 PM
Yay! That worked. Do you know if with this code I can change the background color and the text color like the original code I had??

JiNgLeBeLLz77
09-01-2004, 01:45 AM
try adding this portion of the code in after <form name="form">

<center>
<select style="FONT-SIZE: 8pt; BACKGROUND:#660066; WIDTH: 180; COLOR: #CCCCFF; font-face: arial; height:174" name="playlist" size="1">

lilkit10
09-01-2004, 11:58 PM
Hmmm.... now the songs aren't inside the box... see Do you know what's wrong?

JiNgLeBeLLz77
09-02-2004, 04:10 AM
alright... i'm gonna give you the code i use for my xanga =] it works... just change the coloring and songs and stuff :) hope it works out!

<object id="darkplayer" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" height="0" standby="Loading Microsoft Windows Media Player components..." width="0" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95">
<param NAME VALUE>
<param NAME="ShowControls" VALUE="0">
<param NAME="ShowStatusBar" VALUE="0">
<param NAME="ShowDisplay" VALUE="0">
<param NAME="DefaultFrame" VALUE="Slide">
<param NAME="Autostart" VALUE="1">
<param NAME="Loop" VALUE="True">
</object>
<form name="form">
<center>
<select style="FONT-SIZE: 8pt; BACKGROUND:#660066; WIDTH: 180; COLOR: #CCCCFF; font-face: arial; height:174" name="playlist" size="1">
<option value="0">soar - christina aguilera</option>
<option value="1">dare you to move - switchfoot</option>
<option value="2">can you help me - usher</option>
<option value="3">all i ever wanted - mase</option>
<option value="4">wanna be close - avant</option>
<option value="5">the boys of summer - dj sammie</option>
<option value="6">1 life 1 love remix - epikz</option>
<option value="7">bitter sweet symphony</option>
<option value="8">pieces of me - ashlee simpson</option>
<option value="9">when you kiss me - atc</option>
<option value="10">just love - jolin tsai</option>
</select>
<input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);">
<input TYPE="BUTTON" NAME="darkpause" VALUE="pause" OnClick="document.darkplayer.pause(); playstate=2;">
<input TYPE="BUTTON" NAME="darkstop" VALUE="stop" OnClick="document.darkplayer.stop(); playstate=2;"></p>
</form><script language="JavaScript">
<!--
var playstate = 1;
shuffle = 1; // set to 0 to always play first song in list
// set to 1 to randomly choose the first song to play
songs=new Array();
songs[0]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/5/6597/26927_1_14_04.asf";
songs[1]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/3/4581/28341_1_5_04.asf";
songs[2]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/2/292/22760_1_10_04.asf";
songs[3]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/1/286/22285_1_15_04.asf";
songs[4]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/13392/28570_1_12_04.asf";
songs[5]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/5/23751/15497_1_4_04.asf";
songs[6]="http://home.comcast.net/~xohugs17kissesxo/1life1love.mp3";
songs[7]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/1/279/11557_1_14_04.asf";
songs[8]="http://boss.streamos.com/wmedia/geffen/ashlee_simpson/audio/autobiography/pieces_of_me/00_lo.asx";
songs[9]="http://members.shaw.ca/matrox/whenyoukissme.wma";
songs[10]="http://home.comcast.net/~cabarro/jiu-shi-ai.mp3";

if (shuffle == 1) {
var randsg = Math.floor(Math.random()*songs.length);
document.darkplayer.FileName = songs[randsg];
document.darkplayer.scr = songs[randsg];
document.forms['form'].playlist.options[randsg].selected = true;
}
function play(list) {
if (playstate == 2) {
document.darkplayer.Play();
} else {
var snum = list.options[list.selectedIndex].value
document.darkplayer.FileName = songs[snum];
document.darkplayer.scr = songs[snum];
}
playstate = 1;
}
//-->
</script>