How to embed the player in a HTML page?

Read 12453 times
I was wondering how to get the player (only the player, the thing with the play button on) in a DIV-tag in another website?

I tried adding the following code in:

<DIV>
      <object id="fmp256" type="application/x-shockwave-flash" data="http://stream3.shoutcastusa.com/start/tzfcuzgs/minicaster.swf" width="180" height="70">
           <param name="movie" value="http://stream3.shoutcastusa.com/start/tzfcuzgs/minicaster.swf" />
           <param name="flashVars" value="config=http://stream3.shoutcastusa.com/tunein.php/tzfcuzgs/playlist.mc" />
           <param name="wmode" value="transparent" />
           <param name="allowScriptAccess" value="always" />
            <div class="stirfry">
            <h4>Minicaster Radio Playhead</h4>
            <p>To listen you must <a href="http://www.macromedia.com/go/getflashplayer/"
            title="Click here to install the Flash browser plugin from Macromedia">install Flash Player</a>. Visit
            <a href="http://www.draftlight.net/dnex/mp3player/minicaster/" title="Draftlight Networks">Draftlight Networks</a>
            for more info.</p></div>
         
         </object>
</DIV>

but it doesn't work...
also tried adding the stylesheets to no avail...

How to embed the player?

PS: How to do this is NOT explained in the code snippets
you just converted the relative paths incorrectly.... the below works

<div class="block">

         <div class="content" style="text-align: center">

         <object id="fmp256" type="application/x-shockwave-flash" data="http://stream3.shoutcastusa.com/minicaster.swf" width="180" height="70">
           <param name="movie" value="http://stream3.shoutcastusa.com/minicaster.swf" />
           <param name="flashVars" value="config=http://stream3.shoutcastusa.com/tunein.php/tzfcuzgs/playlist.mc" />
           <param name="wmode" value="transparent" />
           <param name="allowScriptAccess" value="always" />
            <div class="stirfry">
            <h4>Minicaster Radio Playhead</h4>

            <p>To listen you must <a href="http://www.macromedia.com/go/getflashplayer/"
            title="Click here to install the Flash browser plugin from Macromedia">install Flash Player</a>. Visit
            <a href="http://www.draftlight.net/dnex/mp3player/minicaster/" title="Draftlight Networks">Draftlight Networks</a>
            for more info.</p></div>
         
         </object>
         
         </div>
      </div>
Paul from KL Web Consultants KL Web Consultant