Log In · Register

 
help! music not playing
ashlau88
post Jan 1 2005, 04:20 PM
Post #1


Newbie
*

Group: Member
Posts: 3
Joined: Jan 2005
Member No: 77,640



Can anyone tell me whats wrong with my code for my drop down music code? I keep clicking the play button but nothing ever plays. It has worked before and I haven't changed any of it, it just suddenly stopped working one day. ermm.gif
here's the code:
<object id="darkplayer" codeBase="x/controls/mplayer/en/nsmp2inf.cab#Ver" 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">
<p style="text-align: center">
<select style="width: 300px; height: 20px; background-color: #000000; color: #FFFFFF; font-size: 7pt; font-family: arial; border: #66ccff 1px solid;" name="playlist" size="1">
<option value="0">Dare You To Move - Switchfoot</option>
<option value="1">Ocean Avenue - Yellow Card</option>
<option value="2">Just Like You - Three Days Grace</option>
<option value="3">The Best Of Me - The Starting Line</option>
<option value="4">Never Had A Dream Come True - S Club 7</option>
<option value="5">God Must Have Spent - Nsync</option>
<option value="6">I'll Remember You - No Secrets</option>
<option value="7">Why Can't I - Liz Phair</option>
<option value="8">Figure 09 - Linkin Park</option>
<option value="9">Points of Authority/99 Problems/One Step Closer</option>
<option value="10"> Numb/Encore </option>
<option value="11">Greenday - Boulevard of Broken Dreams</option>
<option value="12">Dissapear - Hoobastank</option>
</select><br>
<input style="width: 40px; height: 20px; background-color: #91D0FF; color: #000000; font-size: 7pt; font-family: Rix, sans-serif; border: #007BF7 1px solid;" TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);">
<input style="width: 40px; height: 20px; background-color: #91D0FF; color: #000000; font-size: 7pt; font-family: Rix, sans-serif; border: #007BF7 1px solid;" TYPE="BUTTON" NAME="darkpause" VALUE="pause" OnClick="document.darkplayer.Pause (); playstate=2;">
<input style="width: 40px; height: 20px; background-color: #91D0FF; color: #000000; font-size: 7pt; font-family: Rix, sans-serif; border: #007BF7 1px solid;" 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/3/4581/28341_1_5_04.asf";
songs[1]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/24962/28398_1_3_04.asf";
songs[2]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/2/24938/28340_1_2_04.asf";
songs[3]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/23755/23896_1_4_04.asf";
songs[4]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/1/3392/19555_1_13_04.asf";
songs[5]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/2/3096/3428_1_5_04.asf";
songs[6]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/3/23731/26685_1_6_04.asf";
songs[7]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/1/831/27781_1_3_04.asf";
songs[8]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/5/16216/27461_1_8_04.asf";
songs[9]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/5/16216/30263_1_6_04.asf";
songs[10]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/5/16216/30263_1_4_04.asf";
songs[11]="http://www-scf.usc.edu/~ronaldwc/04%20Boulevard%20of%20Bro ken%20Dreams.wma";
songs[12]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/1/21164/28621_1_12_04.asf";
var randsg = Math.floor(Math.random()* songs.length);
document.darkplayer.FileN ame = 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.FileN ame = songs[snum];
document.darkplayer.scr = songs[snum];
}
playstate = 1;
}
//-->
</script>
 
 
Start new topic
Replies
lovescream
post Jan 1 2005, 04:25 PM
Post #2


define our lives for us.
********

Group: Staff Alumni
Posts: 11,656
Joined: Aug 2004
Member No: 43,293



I dont think you're allowed to use asf's and wma's. Only Mp3's i think =\.
Not sure, though. Or, maybe the links are dead. Otherwise, it looks fine to me.
 

Posts in this topic


Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: