My darkplayer is working, but my, profile/interest/suscriber's list isn't |
My darkplayer is working, but my, profile/interest/suscriber's list isn't |
Aug 16 2005, 01:57 PM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 4 Joined: Aug 2005 Member No: 204,838 |
Can anyone help me?
Heres the code: [CODEBOX] <!-- begin code provided by createblog.com --> <!-- 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">The Party Song - Blink 182 </option> <option value="1">Midnight Voyage - Chobits</option> <option value="2">Famous Last Words - Jars Of Clay</option> <option value="3">Fairy Tale - Michael Wong</option> <option value="4">Kiss Me - Sixpense None The Richer</option> <option value="5">There She Goes - Sixpence None The Richer</option> <option value="6">All The Small Things - Blink 182</option> <option value="7">Shinjitsu No Uta - Do As Infinity</option> <option value="8">April Showers - Jars Of Clay</option> <option value="9">Marushe - Kick The Can Crew</option> <option value="10">Can't Wait - Yuki Hsu & Yoo Seung Jun</option> <option value="11">First Date - Blink 182</option> <option value="12">Going Away To College - Blink 182</option> <option value="13">For Fruits Basket - Fruits Basket</option> <option value="14">I Can't Catch You - Sixpense None The Richer</option> <option value="15">Starry Sky - Angelic Layer</option> <option value="16">Hear You Everywhere - Chobits</option> <option value="17">With Every Breath - Sixpence None The Richer & Jars Of Clay</option> <option value="18">Precious Jesus - Sixpence None The Richer</option> <option value="19">Unbalance - Kick The Can Crew</option> <option value="20">Whatever (M-Remix) - Hamasaki Ayumi</option> <option value="21">Yasashisa No Shouzou - Chobits</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 songs=new Array(); // Add song URLs here songs[0]="http://kyousouijiro.tripod.com/mp3s/blink182thepartysong.mp3"; songs[1]="http://kyousouijiro.tripod.com/mp3s/chobitsmidnightvoyage.mp3"; songs[2]="http://kyousouijiro.tripod.com/mp3s/jocfamouslastwords.mp3"; songs[3]="http://kyousouijiro.tripod.com/mp3s/michaelwongfairytale.mp3"; songs[4]="http://kyousouijiro.tripod.com/mp3s/sntrkissme.mp3"; songs[5]="http://kyousouijiro.tripod.com/mp3s/sntrthereshegoes.mp3"; songs[6]="http://yodan6thkyu.tripod.com/Mp3s/blink182allthesmallthings.mp3"; songs[7]="http://yodan6thkyu.tripod.com/Mp3s/daishinjitsunouta.mp3"; songs[8]="http://yodan6thkyu.tripod.com/Mp3s/jocaprilshowers.mp3"; songs[9]="http://yodan6thkyu.tripod.com/Mp3s/ktccmarushe.mp3"; songs[10]="http://yodan6thkyu.tripod.com/Mp3s/yhysjcantwait.mp3"; songs[11]="http://yodan5thkyu.tripod.com/Mp3s/blink182firstdate.mp3"; songs[12]="http://yodan5thkyu.tripod.com/Mp3s/blink182goingawaytocollege.mp3"; songs[13]="http://yodan5thkyu.tripod.com/Mp3s/fbforfruitsbasket.mp3"; songs[14]="http://yodan5thkyu.tripod.com/Mp3s/spntricantcatchyou.mp3"; songs[15]="http://green11435.tripod.com/Mp3s/angeliclayerstarrysky.mp3"; songs[16]="http://green11435.tripod.com/Mp3s/chobitsihearyoueverywhere.mp3"; songs[17]="http://green11435.tripod.com/Mp3s/sntjocrwitheverybreath.mp3"; songs[18]="http://green11435.tripod.com/Mp3s/sntrpreciousjesus.mp3"; songs[19]="http://mcheesan.tripod.com/Mp3s/kickthecancrewunbalance.mp3"; songs[20]="http://mcheesan.tripod.com/Mp3s/hamasakiayumiwhatever.mp3"; songs[21]="http://mcheesan.tripod.com/Mp3s/chobitsyasashisanoshouzou.mp3"; 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 -- |
|
|
|
![]() |
Aug 16 2005, 02:34 PM
Post
#2
|
|
|
Newbie ![]() Group: Member Posts: 4 Joined: Aug 2005 Member No: 204,838 |
I fixed it >_< I just messed around with scripts and made it work ^_^ Thanks for the help anyway people ^_^ Its much appreciated.
|
|
|
|
kyousouijiro My darkplayer is working, but my Aug 16 2005, 01:57 PM
Shibahime If your dark player works. That's fine. But i... Aug 16 2005, 02:00 PM
Kenado Your files are mp3 it might take a while to load a... Aug 16 2005, 02:01 PM
kyousouijiro Thats all in my "Input your own Header HTML... Aug 16 2005, 02:04 PM
Shibahime ^ He just said that his player is working. That me... Aug 16 2005, 02:04 PM
Kenado QUOTE(Shibahime @ Aug 16 2005, 3:04 PM)^ He j... Aug 16 2005, 02:11 PM
Shibahime QUOTE(FroZenCloud104 @ Aug 16 2005, 11:11 AM)... Aug 16 2005, 02:16 PM
kyousouijiro yeah, xanga's default Aug 16 2005, 02:12 PM
Kenado ^ I see what you're saying, well I just looked... Aug 16 2005, 02:20 PM![]() ![]() |