Embedded media player

M

Moo

Before I start, please note I'm not posting here to try and sell
anything from my site, I need some HTML advice.

I've put an embedded windows media player on my cafepress site so I can
verbally explain my designs to potential customers. It works fine, the
only drawback is that the controls for the player are a bit large, it
would look much nicer if I could have them smaller, have just the play,
stop, vol buttons & the time (if poss).

Anything I can do to make it look better?

The site is http://www.cafepress.com/sfclothing

Many thanks,

Moo
 
T

Travis Newbury

Anything I can do to make it look better?

You can make the player's size 0x0 then create your own "play button"
with an image and use JavaScript to load and play the audio.

<OBJECT ID="Player" width="0" height="0"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<PARAM name="URL" value="MY SERVER HERE">
<PARAM name="uiMode" value="none">
</OBJECT>
<BR>
<INPUT TYPE="BUTTON" NAME="BtnPlay" VALUE="Play"
OnClick="StartMeUp()">
<INPUT TYPE="BUTTON" NAME="BtnStop" VALUE="Stop"
OnClick="ShutMeDown()">
<SCRIPT>
<!--
function StartMeUp ()
{
Player.controls.play();
}

function ShutMeDown ()
{
Player.controls.stop();
}
-->
</SCRIPT>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,073
Latest member
DarinCeden

Latest Threads

Top