Okies hi im Adorkable Kacey...or
Kacey prenouned *kc* heh uhm im 12..and yea..i need major help with soome coding so while im here..ill just post somthing..its about the drop down play list...it just wont play arg! ><'
<!-- begin code provided by createblog.com -->
<!-- begin code provided by createblog.com -->
<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">
<select name="playlist" size="1">
<!-- Add song info here -->
<option value="1">Stacy's Mom</option>
<option value="2">Damaged </option>
<option value=3>Cry Me a River</option>
<option value=4> 1,2 Step</option>
<option value=5> Dont say good bye</option>
<option value=6> deep river</option>
<option value=7> Weve had enough</option>
</select>
<input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);">
</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();
// Add song URLs here
songs[1]=http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/2/1224/28112_1_3_04.asf
Songs[2]=http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/1695/26908_1_8_04.asf
Songs[3]=http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/23932/26880_1_5_04.asf
Songs[4]= http://home.socal.rr.com/tpcrew1/1,2%20Step
Songs[5]= http://notendur.centrum.is/~kristul/Music/...odbye%20(1).MP3
Songs[6]= http://www.songjapan.com/songupload/hikaru11s01.wma
Songs[7]= http://assets.artistdirect.com/Downloads/a...vehadenough.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>
<!-- end code provided by createblog.com -->
<!-- end code provided by createblog.com -->
please help