music dropdown menu, help! |
music dropdown menu, help! |
Sep 8 2004, 07:57 AM
Post
#1
|
|
![]() Some 1 plz find me, help me find my way..my way bak 2 bliss ![]() ![]() ![]() ![]() Group: Member Posts: 288 Joined: Jan 2004 Member No: 1,748 |
QUOTE <!-- 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="0">Artist Name - Song Title</option> <option value="1">Artist Name - Song Title</option> <option value="2">Artist Name - Song Title</option> <option value="3">Artist Name - Song Title</option> <option value="4">Artist Name - 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 = 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[0]="SONG URL HERE"; songs[1]="SONG URL HERE"; songs[2]="SONG URL HERE"; songs[3]="SONG URL HERE"; songs[4]="SONG 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> <!-- end code provided by createblog.com --> for the music drop down menue how do i change its position on my xanga n how do i change the size n the bg color n holight kolor of the menu |
|
|
|
![]() |
Sep 8 2004, 09:37 AM
Post
#2
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 491 Joined: May 2004 Member No: 18,689 |
i think your missing a part fo the code
CODE <!-- begin code provided by createblog.com --> <p style="text-align: center"> <select style="FONT-SIZE: 8pt; BACKGROUND:#000000; WIDTH: 300px; COLOR: #00CCFF; font-face: arial" name="playlist" size="1"> <!-- end code provided by createblog.com --> try to add that and c . |
|
|
|
LoST SouL music dropdown menu Sep 8 2004, 07:57 AM
LoST SouL QUOTE<!-- begin code provided by createblo... Sep 8 2004, 11:06 AM
matthufham CODE<!-- begin code provided by createblog... Sep 8 2004, 03:59 PM![]() ![]() |