HighDots Forums  

Embedded media player

alt.html alt.html


Discuss Embedded media player in the alt.html forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Moo
 
Posts: n/a

Default Embedded media player - 05-09-2008 , 02:35 PM






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

--

My blog - http://degeneratemoo.livejournal.com

Reply With Quote
  #2  
Old   
Travis Newbury
 
Posts: n/a

Default Re: Embedded media player - 05-09-2008 , 06:16 PM






On May 9, 3:35 pm, Moo <rodneyl... (AT) roonster (DOT) wanadoo.co.ukREMOVEME>
wrote:
Quote:
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>



Reply With Quote
Reply




Thread Tools
Display Modes

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 On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.