Windows Media Music Player

Artoonie

New Member
I was wondering how to get Windows Media Player on a site. For example, I want to play music on my site (not just background music) but every time I used the <embed> tag, there is an empty black box above the player. Is there any way to make it look somewhat like this:
deletethis3rn.gif
, but with the seek?
Or any type of music player with play, pause, stop, and seeking?
 

ISDProductions

New Member
try this:

<object id="MediaPlayer" classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" type="application/x-oleobject" standby="Loading Microsoft Windows Media Player components..." height="35" width="250">
<param name="windowlessvideo" value="false" />
<param name="enabled" value="true" />
<param name="url" value="../../../../ringtones/12-jay-z-1-900-hustler-GMZ.mp3" />
<param name="autostart" value="false" />
<param name="uimode" value="full" />
</object>
 
Top