[advanced search]
Results from the most recent live auction are here.
13 members in the live chat room. Join Chat!
Register Rules & FAQ NP$ Store Active Threads Mark Forums Read
Go Back   NamePros.Com > Design and Development > Programming > CODE
User Name
Password

Old 10-01-2005, 08:51 PM   · #1
abcde
NamePros Regular
 
Name: Steven
Trader Rating: (11)
Join Date: Feb 2005
Posts: 477
NP$: 920.00 (Donate)
abcde has a spectacular aura aboutabcde has a spectacular aura about
Needed: This code:

i need the code that can play multiple songs using a drop down list like this site.
http://radioluisteren.nl/index.php

i know if i wanna play only one song, i could use this code:

Code:
<p align="center"> <object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" id="Player" width="350" height="300" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,0,0" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject"> <param name="URL" value="whatever link to the song"> <param name="rate" value="1"> <param name="balance" value="0"> <param name="currentPosition" value="1"> <param name="defaultFrame" value> <param name="playCount" value="1"> <param name="autoStart" value="0"> <param name="loop" value="-1"> <param name="currentMarker" value="0"> <param name="invokeURLs" value="-1"> <param name="baseURL" value> <param name="volume" value="60"> <param name="mute" value="0"> <param name="uiMode" value="full"> <param name="stretchToFit" value="0"> <param name="windowlessVideo" value="0"> <param name="enabled" value="-1"> <param name="enableContextMenu" value="0"> <param name="fullScreen" value="0"> <param name="SAMIStyle" value> <param name="SAMILang" value> <param name="SAMIFilename" value> <param name="captioningID" value> <param name="enableErrorDialogs" value="0"> <param name="_cx" value="7938"> <param name="_cy" value="6482"> <embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows95/downloads/contents/wurecommended/s_wufeatured/mediaplayer/default.asp" src="zender" rate=1 balance=0 currentPosition=1 playCount=1 autoStart=0 loop=-1 currentMarker=0 invokeURLs=-1 volume=100 mute=0 uiMode=full stretchToFit=0 windowlessVideo=0 enabled=-1 enableContextMenu=0 fullScreen=0 SAMIStyle SAMILang SAMIFilename captioningID enableErrorDialogs=0 _cx=7938 _cy=6482 width=350 height=300> </embed> </object> </p>


but then i dont know what to do if i have 2 or more songs, Please help.


Please register or log-in into NamePros to hide ads
abcde is offline   Reply With Quote
Old 10-02-2005, 10:54 AM   · #2
benc811
NamePros Member
 
Name: Ben Lonchar
Location: CT USA
Trader Rating: (8)
Join Date: Oct 2004
Posts: 190
NP$: 152.70 (Donate)
benc811 will become famous soon enoughbenc811 will become famous soon enough
Can you use php? If you can just change the songs location etc to a variable and make a dropdown to pick one. something like this

PHP Code:
<?php
    
if( isset($_POST['song']) ){
        
$video = $_POST['song']; // chosen song
    
}
    else{
        
$video ="default song"; // default page
   
}
?>
<p align="center">
<object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" id="Player" width="350" height="300" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,0,0" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">
<param name="URL" value="<?php echo $song; ?>">
<param name="rate" value="1">
<param name="balance" value="0">
<param name="currentPosition" value="1">
<param name="defaultFrame" value>
<param name="playCount" value="1">
<param name="autoStart" value="0">
<param name="loop" value="-1">
<param name="currentMarker" value="0">
<param name="invokeURLs" value="-1">
<param name="baseURL" value>
<param name="volume" value="60">
<param name="mute" value="0">
<param name="uiMode" value="full">
<param name="stretchToFit" value="0">
<param name="windowlessVideo" value="0">
<param name="enabled" value="-1">
<param name="enableContextMenu" value="0">
<param name="fullScreen" value="0">
<param name="SAMIStyle" value>
<param name="SAMILang" value>
<param name="SAMIFilename" value>
<param name="captioningID" value>
<param name="enableErrorDialogs" value="0">
<param name="_cx" value="7938">
<param name="_cy" value="6482">
<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows95/downloads/contents/wurecommended/s_wufeatured/mediaplayer/default.asp" src="zender" rate=1 balance=0 currentPosition=1 playCount=1 autoStart=0 loop=-1 currentMarker=0 invokeURLs=-1 volume=100 mute=0 uiMode=full stretchToFit=0 windowlessVideo=0 enabled=-1 enableContextMenu=0 fullScreen=0 SAMIStyle SAMILang SAMIFilename captioningID enableErrorDialogs=0 _cx=7938 _cy=6482 width=350 height=300> </embed>
</object>
</p>
<BR>
<FORM action="<?php echo $_SERVER['PHP_SELF']; ?>" method=post>
        <SELECT name=song>
          <OPTION value="link">song 1
          </OPTION>
          <OPTION value="">song 2
          </OPTION>
          <OPTION value="">song 3
          </OPTION>
          <OPTION value="">song 4
          </OPTION>
          <OPTION value="">song 5
          </OPTION>
          </SELECT>
          <INPUT type=submit value="Play song">
          <br>
    </FORM>
__________________
http://www.annoytheworld.com games, videos, Music, More
http://www.Besiege.net Free flash arcade
FileFreaks
.:Freakishly reliable file hosting:.
benc811 is offline   Reply With Quote
Old 10-02-2005, 06:36 PM   · #3
abcde
NamePros Regular
 
Name: Steven
Trader Rating: (11)
Join Date: Feb 2005
Posts: 477
NP$: 920.00 (Donate)
abcde has a spectacular aura aboutabcde has a spectacular aura about
thanks!
abcde is offline   Reply With Quote
Old 10-05-2005, 05:29 AM   · #4
Cody123
New Member
 
Trader Rating: (0)
Join Date: Oct 2005
Posts: 10
NP$: 18.00 (Donate)
Cody123 is an unknown quantity at this point
If you need anymore help pm me, ima wiz at music codes.
Cody123 is offline   Reply With Quote
Closed Thread

NamePros is a revenue sharing forum.

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Help needed with admin code 200nps kjnetworks Programming 4 08-17-2005 06:49 PM
Needed: 'Email a friend' php code with . . . cjcjcj Programming 7 06-29-2005 12:06 AM
Script Or Code Needed Really Bad yum114 Programming 1 07-09-2004 02:45 AM

Site Sponsors
http://www.mobisitetrader.com/ Exdon EscrowDNS
Advertise your business at NamePros
All times are GMT -7. The time now is 10:03 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0