People can always play with the PARAM name "uiMode" settings.
With the following setting Windows Media Player is embedded with the status window, seek bar, play/pause, stop, mute, next, previous, fast forward, fast reverse, and volume controls in addition to the video or visualization window:
HTML Code:
<PARAM Name = "uiMode" Value = "full">
With the following example Windows Media Player is embedded without any visible user interface (controls, video or visualization window):
HTML Code:
<PARAM
NAME="uiMode" VALUE="invisible">
With this example Windows Media Player is embedded with the status window, play/pause, stop, mute, and volume controls shown in addition to the video or visualization window:
HTML Code:
<PARAM NAME="uiMode" VALUE="mini">
With this mode Windows Media Player is embedded without controls, and with only the video or visualization window displayed:
HTML Code:
<PARAM NAME="uiMode" VALUE="none">
you can also make sure that these are set:
HTML Code:
<param name="ShowControls" value="true">
<param name="ShowDisplay" value="true">
If you want to be nice you can let your users choose. The following example creates an HTML SELECT element that allows the user to change the user interface for an embedded Player object (The Player object was created with ID = "Player"):
HTML Code:
<!-- Create an HTML SELECT element. -->
<SELECT ID = UI LANGUAGE="JScript"
/* Specify the UI mode the user selects. */
onChange = "Player.uiMode = UI.value">
/* These are the four UI mode options. */
<OPTION VALUE="invisible">Invisible
<OPTION VALUE="none">No Controls
<OPTION VALUE="mini">Mini Player
<OPTION VALUE="full">Full Player
</SELECT>