Log In · Register

 
 
Closed TopicStart new topic
help please!, the custom module thingy
kandi-chan
post Oct 10 2004, 04:17 AM
Post #1


Senior Member
***

Group: Member
Posts: 60
Joined: Apr 2004
Member No: 12,141



argh.i cant seem 2 make this thing work rite... heres the code for my module thing
CODE
<!-- begin code provided by createblog.com -->
<!-- Here's your CUSTOM MODULE.. copy and paste as needed -->
<table border="1" cellspacing="0" cellpadding="4" width="100%" class="module"><tr><th valign="top" align="left" class="module"><b>Turn It Up</b></th></tr><tr><td valign="top" class="module">
<!—insert text below -->
<b>..may take a sec 2 load so be patient..
</b>
<style></style></head><body><span><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>
</p>
<form name="form">
<p style="text-align: center">
<select style="FONT-SIZE: 8pt; BACKGROUND:#000000; WIDTH: 130; COLOR: #aaeeff; font-face: comic sans ms; height:140" name="playlist" size="1">
<option value="0"> Nas~One Mic </option>
<option value="1"> Kanye Jay-Z n J-Ivy~Neva Let You Down </option>
<option value="2"> Jojo~Keep on Keepin on </option>
<option value="3"> Akon~Locked Up </option>
<option value="4"> Usher n Alicia Keys~My Boo </option>
<option value="5"> Fabolous~Breathe </option>
<option value="6"> Alicia Keys~Diary </option>
<option value="7">J-Kwon~ You n Me </option>
<option value="8"> X-tina~Walk Away </option>
<option value="9"> Jojo n Bow~Baby its You rmx </option>
<option value="10"> Eminem~Just Lose It </option>
<option value="11"> Ciara n Missy Elliott~ 1, 2 Step </option>


</select><br>
<input TYPE="BUTTON" NAME="darkplay" VALUE="Spin It" OnClick="play(document.forms['form'].playlist);">
<input TYPE="BUTTON" NAME="darkpause" VALUE="Hold Up" OnClick="document.darkplayer.pause(); playstate=2;">
<input TYPE="BUTTON" NAME="darkstop" VALUE="Cut" 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
 // www.xanga.com/smartypants91780
  // unlimited songs, just copy and paste the song line and change the number
songs=new Array(11);
songs[0]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/1/1463/24607_1_7_04.asf "
songs[1]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/24822/28866_1_8_04.asf "
songs[2]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/25873/29488_1_11_04.asf "
songs[3]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/3/25722/29397_1_1_04.asf "
songs[4]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/3397/27162_1_12_04.asf "
songs[5]=" http://195.161.115.251/lofi/25/251480.mp3"
songs[6]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/1/2026/28681_1_7_04.asf "
songs[7]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/1/1695/1351_1_8_04.asf "
songs[8]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/5/6597/26927_1_3_04.asf "
songs[9]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/292/29068_1_2_04.asf "
songs[10]=" http://a420.v8383d.c8383.g.vm.akamaistream.net/7/420/8383/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/292/29068_1_2_04.asf "
songs[11]=" mms://66.36.26.67/MyWDKX/Jams/Ciara/Goodies/1%202%20Stop.mp3?ext=.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;
}
//-->
<!-- end -->
 </script>

<br>

</td></tr></table><br>

<!-- end code provided by createblog.com -->


wen i put it on..it keeps goin 2 the top of my xanga and its like this big huge box...i juss want it 2 be like the otha modules u kno? anyh00 can some1 please help me? wacko.gif
 

Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: