Hey again. Sorry to bug you. Its me the one who asked you about the playist. I dont know where they have instuctions to make it. Can you please explain to me how you did it ? Thanks So Much !!!!! Sorry for buggin you <33
<!-- begin code provided by createblog.com -->
<!-- begin code provided by createblog.com -->
<object id="darkplayer" codeBase="[Link](Mouse over link to see full location); 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>
</p>
<form name="form">
<p style="text-align: center">
<select style="FONT-SIZE: 8pt; BACKGROUND:#ffffff; WIDTH: 200; COLOR: #000000; font-face: verdana; height:174" name="playlist" size="1">
<option value="0"> SONG TiTLE </option>
<option value="1"> SONG TiTLE </option>
<option value="2"> SONG TiTLE </option>
<option value="3"> SONG TiTLE </option>
<option value="4"> SONG TiTLE </option>
<option value="5"> SONG TiTLE </option>
<option value="6"> SONG TiTLE </option>
<option value="7"> SONG TiTLE </option>
<option value="8"> SONG TiTLE </option>
<option value="9"> SONG TiTLE </option>
<option value="10"> SONG TiTLE </option>
</select><br>
<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
// www.xanga.com/smartypants91780
// unlimited songs, just copy and paste the song line and change the number
songs=new Array();
songs[0]=" SONG URL "
songs[1]=" SONG URL "
songs[2]=" SONG URL "
songs[3]=" SONG URL "
songs[4]=" SONG URL "
songs[5]=" SONG URL "
songs[6]=" SONG URL "
songs[7]=" SONG URL "
songs[8]=" SONG URL "
songs[9]=" SONG URL "
songs[10]=" SONG URL "
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 -->
the spots were it says '<option value="0"> SONG TiTLE </option>' your going to put in the song name. and the spots were it says 'songs[0]=" SONG URL "' you are going to put in the URL.
make sure it lines up, like the song with the URL.
Attention: NOTHING on this site may be reproduced in any fashion whatsoever without explicit consent (in writing) of the owner of said material, unless otherwise stated on the page where the content originated. Search engines are free to index and cache our content. Users who post their account names or personal information in their questions have no expectation of privacy beyond that point for anything they disclose. Questions are otherwise considered anonymous to the general public.