Playlist not working at all!!!, playlist promblems i'm very annoyed |
Playlist not working at all!!!, playlist promblems i'm very annoyed |
![]()
Post
#1
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Aug 2005 Member No: 190,165 ![]() |
![]() Codebox next time, kthx. ([*codebox][/*codebox] without the asteriks.) This post has been edited by nyah-nek0: Aug 1 2005, 04:22 PM |
|
|
![]() |
![]()
Post
#2
|
|
![]() i honk for centaurs ![]() ![]() ![]() ![]() Group: Member Posts: 120 Joined: Mar 2005 Member No: 114,983 ![]() |
I use the same code for my xanga, so it should work. Are your song URLs correct? You might have copied only part of the URL, or it could be that the song is no longer uploaded to that URL. Otherwise...I'm no expert on Javascript, so you might ask someone else.
![]() |
|
|
![]()
Post
#3
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,551 Joined: Feb 2005 Member No: 102,857 ![]() |
I dont think those urls are cus htmls are usually web pages not music files
|
|
|
![]()
Post
#4
|
|
![]() You'll find me in your dreams. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 8,536 Joined: Mar 2005 Member No: 114,010 ![]() |
Just skimmed it, but it seems that you need... Actual music files. Find a sond you like, right clik on the Play link, and select properties. From there, highlight the entire URL and use that.
|
|
|
![]()
Post
#5
|
|
Newbie ![]() Group: Member Posts: 6 Joined: Jul 2005 Member No: 189,072 ![]() |
i know wat site you got that from....... your supposed to click the link , then it gives you a list of songs to choose from .......... then u pick what song u want and then right click go to properties , then copy the url if u do not undrstand that i will just do it for you
|
|
|
![]()
Post
#6
|
|
Newbie ![]() Group: Member Posts: 6 Joined: Jul 2005 Member No: 189,072 ![]() |
[CODEBOX]<!-- 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">Maroon 5- harder to breath</option> <option value="1">metallica- one</option> <option value="2">NIN- The hand that feeds</option> <option value="3">kelly Clarkson- Beautiful disaster</option> <option value="4">cold- stupid girl</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://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/23581/26428_1_1_05.asf"; songs[1]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/2/300/3698_1_4_05.asf"; songs[2]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/82/30742_1_4_05.asf"; songs[3]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/23893/27514_1_7_05.asf"; songs[4]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/13439/27742_1_4_05.asf"; 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 --> |
|
|
![]()
Post
#7
|
|
Newbie ![]() Group: Member Posts: 6 Joined: Jul 2005 Member No: 189,072 ![]() |
[/CODEBOX]<!-- 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">Maroon 5- harder to breath</option> <option value="1">metallica- one</option> <option value="2">NIN- The hand that feeds</option> <option value="3">kelly Clarkson- Beautiful disaster</option> <option value="4">cold- stupid girl</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://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/23581/26428_1_1_05.asf"; songs[1]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/2/300/3698_1_4_05.asf"; songs[2]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/82/30742_1_4_05.asf"; songs[3]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/23893/27514_1_7_05.asf"; songs[4]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/13439/27742_1_4_05.asf"; 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 --> |
|
|
![]()
Post
#8
|
|
Newbie ![]() Group: Member Posts: 6 Joined: Jul 2005 Member No: 189,072 ![]() |
sry bout that ^ idk how to do a codebox , hope it works tho
|
|
|
![]() ![]() |