music playlist...help |
music playlist...help |
Dec 23 2004, 03:40 PM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Dec 2004 Member No: 74,027 |
i put the code for a music playlist in my xanga and it wont work...i've tried this a lot of times and it never works for me...i know nothing about html so it could be something really obvious
<!-- 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">Green Day - Blvd.of Broken Dreams</option> <option value="1">Good Charlotte - I Just Wanna live</option> <option value="2">Crossfade - Cold</option> <option value="3">Jesse McCartney - Beautiful Soul</option> <option value="4">Mario - Let me Love You</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]="http://www.warnermusic.com.au/_global/rs_redirect.asp?"; songs[1]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/15873/29892_1_5_04.asf"; songs[2]="http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/25943/29574_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/25716/29920_1_2_04.asf"; songs[4] ="http://media.bmgonline.com/jrecords.com/mario/video/let_me_love_you_128.ram"; 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 --> thankx!! |
|
|
|
tallstuff21 heres the link 2 my xanga if u need it
my xanga Dec 23 2004, 03:58 PM
electric shock Where did you get the URL's
It could be that t... Dec 23 2004, 04:03 PM![]() ![]() |