help |
help |
Jan 7 2005, 06:13 AM
Post
#1
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 52 Joined: Dec 2004 Member No: 75,871 |
does anyone have the code to make the drop down playlist different font, color.....i looked in the scripts but didnt know whut to look under!
|
|
|
|
![]() |
Jan 7 2005, 06:27 AM
Post
#2
|
|
![]() yskulmate ![]() ![]() ![]() ![]() Group: Member Posts: 187 Joined: Nov 2004 Member No: 64,014 |
u can add more songs by adding the code
songs[1]="URL HERE OF SONG1"; songs[2]="URL HERE of SONG2"; then on the song list that will appear on the playlist add: <option value="0"> SONG1 TITLE </option> <option value="0"> SONG2 TITLE </option> [CODEBOX] <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"> <option value="0"> SONG TITLE </option> </select> <input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);"> </form> <script language="JavaScript"> var playstate = 1; shuffle = 0; songs=new Array(); songs[0]="URL HERE"; 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> |
|
|
|
Ceara help Jan 7 2005, 06:13 AM
niez_cho Umm... yskulmate, Ceara asked for changing the fon... Jan 7 2005, 06:38 AM
yskulmate oh... very very sorrry!!! for the wron... Jan 7 2005, 06:48 AM
Jus2s1mp13 Drop down playlist color/font/size.
<style ty... Jan 7 2005, 12:06 PM
Ceara ok thanks! Jan 7 2005, 06:04 PM
Sherry_Vu QUOTE(Ceara @ Jan 7 2005, 5:04 PM)ok thanks... Jan 7 2005, 06:42 PM![]() ![]() |