View Full Version : xanga music playlist - not working


bumbienoodlepie
08-30-2004, 06:46 PM
here's the code that i have for my song playlist. i put it in my webstats and it showed up but wouldn't play... any idea what the problem is? should i try and find new music links..??


<form name="form">
<p style="text-align: center">
<select style="FONT-SIZE: 6.5pt; BACKGROUND:#FFFFFF; WIDTH: 200px; COLOR: #00FF00; font-face: verdana" name="SongZ.." size="1">
<option value="0">The Runaway – Something Corporate </option>
<option value="1">You Know How I Do – Taking Back Sunday</option>
<option value="2">I Don’t Wanna Be – Gavin DeGraw </option>
<option value="3">Favor House Atlantic – Coheed and Cambria</option>
</select><br>-
<input TYPE="BUTTON" NAME="PLAY" VALUE="play" OnClick="play(document.forms['form'].playlist);"> -</p>
</form>
<script language="JavaScript">
<!--

var playstate = 0;
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";
songs[1]= " http://www.boomspeed.com/lbc_sammy/TAKING_BACK_SUNDAY_you_know_how_i_do.wma" ;
songs[2]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com ";
songs[3]
="http://www.evrhq.com/mp3/coheed_and_cambria_-_a_favor_house_atlantic.mp3";
if (shuffle == 1) {
var randsg = Math.floor(Math.random()*songs.length);
document..buttonname.FileName = songs[randsg];
document..buttonname.scr = songs[randsg];
document.forms['form'].playlist.options[randsg].selected = true;
}
function play(list) {
if (playstate == 2) {
document.buttonname.Play();
} else {
var snum = list.options[list.selectedIndex].value
document..buttonname.FileName = songs[snum];
document..buttonname.scr = songs[snum];
}
playstate = 1;
}
//-->
</script>

oincubusx
08-31-2004, 01:00 AM
it looks like only two songs should work but really only one! cause these two wont work...

http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com

http://a420.v8383d.c8383.g.vm.akama...load.akamai.com



and usually mp3s dont work with dial up as well...

http://www.evrhq.com/mp3/coheed_and_cambria_-_a_favor_house_atlantic.mp3


so only the taking back sunday song should work

bumbienoodlepie
08-31-2004, 07:41 AM
so.. how do i fix it...?