Insert the song name where it says "INSERT SONG NAME" and place the URL where it says "INSERT URL." If you need more places to put songs, copy the song name code and URL code with the next highest number. You could have probably figured out that stuff anyways....Here are the codes:
For a playlist thing, copy and paste this code:
<!--Provided by http://netsirk.proboards26.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">
<p style="text-align: center"> <select style="FONT-SIZE: 8pt; BACKGROUND:#000000; WIDTH: 150px; COLOR: #ffffff; font-face: arial" name="playlist" size="1"> <option value="0">INSERT SONG NAME</option> <option value="1">INSERT SONG NAME</option> <option value="2">INSERT SONG NAME</option> <option value="3">INSERT SONG NAME</option> <option value="4">INSERT SONG NAME</option> <option value="5">INSERT SONG NAME</option> <option value="6">INSERT SONG NAME</option> <option value="7">INSERT SONG NAME</option> <option value="8">INSERT SONG NAME</option> <option value="9">INSERT SONG NAME</option> <option value="10">INSERT SONG NAME</option>
</select>
<input TYPE="BUTTON" NAME="Spin It" VALUE="play" OnClick="play(document.forms['form'].playlist);"> <input TYPE="BUTTON" NAME="Scratch" VALUE="pause" OnClick="document.darkplayer.Pause(); playstate=2;"> <input TYPE="BUTTON" NAME="Stop It" 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(); songs[0]="INSERT URL"; songs[1]="INSERT URL"; songs[2]="INSERT URL"; songs[3]="INSERT URL"; songs[4]="INSERT URL"; songs[5]="INSERT URL"; songs[6] ="INSERT URL"; songs[7]="INSERT URL"; songs[8]="INSERT URL"; songs[9]="INSERT URL"; songs[10]="INSERT URL"; 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> <!--Provided by http://netsirk.proboards26.com-->
For a video player, copy this code:
<!-- begin code provided by blogring.net --> <object ID="Player" CLASSID="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6"> <param name="AutoStart" value="True"> <param name="Loop" value="True"> </object>
<script LANGUAGE="JavaScript"> function StartMeUp1() { Player.URL = "INSERT URL" } </script> <FORM> <INPUT TYPE="BUTTON" NAME="BtnPlay" VALUE="INSERT SONG NAME" OnClick="JavaScript:StartMeUp1()"> </FORM> <script LANGUAGE="JavaScript"> <!-- function StartMeUp2() { Player.URL = "INSERT URL" } --></script> <FORM> <INPUT TYPE="BUTTON" NAME="BtnPlay" VALUE="INSERT SONG NAME" OnClick="JavaScript:StartMeUp2()"> </FORM>
<!-- end code provided by blogring.net -->
The Special Title Bar Code:
<!-- Title Bar Animation : Provided by Blogring.net --> <script language="JavaScript1.2"> // script by drevil_nz, Michael Dillon, Christchurch New Zealand. // Permission granted to use this script provided this credit // remains intact. Visit my homepage www.chc.quik.co.nz/juggler/mikey.html // Script written for Internet Explorer 4.0+. var message="CHANGE TEXT HERE" var message=message+" " //leave this alone i="0" var temptitle="" var speed="150" set=setTimeout; function titler(){ if (!document.all&&!document.getElementById) return document.title=temptitle+message.charAt(i) temptitle=temptitle+message.charAt(i) i++ if(i==message.length) { i="0" temptitle="" } set("titler()",speed) }
window.onload=titler </script> <!-- End Script : Provided by Blogring.net --> |