PDA

View Full Version : [REQ] music play


Snitz
06-17-2005, 10:02 PM
im looking for something for my forum

I want my forum to play a small mp3 file when a user enters the forum... who ever he is (guest or member)
I don't want that user to be able to shut the song in anyway... I want to be finish and then it'll shut down itself... or if it's not possible it's ok user can shut it down :)

and what's the code of the embed mp3 file ??
with all the play options ?

_Aerospace_Eng_
06-18-2005, 12:57 AM
You can't stop the user from stopping the music.
<object id="mediaPlayer" width="300" height="45"
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">
<param name="fileName" value="yoursong.mp3">
<param name="animationatStart" value="true">
<param name="transparentatStart" value="true">
<param name="autoStart" value="true">
<param name="showControls" value="true">
<param name="loop" value="false">
<embed type="application/x-mplayer2"
pluginspage="http://microsoft.com/windows/mediaplayer/en/download/"
showcontrols="true" width="300" height="45"
src="yoursong.mp3" autostart="true" loop="false">
</object>