Value
| Description
| Height
| Width
|
CONSOLE
| The default control. The browser should display a full-sized full set of controls: a start button,
a pause button, a stop button, and a volume control (aka the "volume lever").
<EMBED
SRC="../graphics/sounds/1812over.mid"
HEIGHT=60 WIDTH=144
CONTROLS=CONSOLE
>
gives us
| 60
| 144
|
SMALLCONSOLE
| The browser should display a set of controls which takes up less space. The controls displayed are the start button, the stop button, and the volume lever. The pause button is not displayed.
SMALLCONSOLE takes up less vertical space than CONSOLE
but is just as wide.
<EMBED
SRC="../graphics/sounds/1812over.mid"
HEIGHT=15 WIDTH=144
CONTROLS=SMALLCONSOLE
>
gives us
| 15
| 144
|
PLAYBUTTON
| Only show the play button.
<EMBED
SRC="../graphics/sounds/1812over.mid"
HEIGHT=23 WIDTH=35
CONTROLS=PLAYBUTTON
>
gives us
This value is usually used in conjunction with the MASTERSOUND attribute.
| 23
| 35
|
PAUSEBUTTON
| Only show the pause button.
<EMBED
SRC="../graphics/sounds/1812over.mid"
HEIGHT=23 WIDTH=35
CONTROLS=PAUSEBUTTON
>
gives us
This value is usually used in conjunction with the MASTERSOUND attribute.
| 23
| 35
|
STOPBUTTON
| Only show the stop button.
<EMBED
SRC="../graphics/sounds/1812over.mid"
HEIGHT=23 WIDTH=35
CONTROLS=STOPBUTTON
>
gives us
This value is usually used in conjunction with the MASTERSOUND attribute.
| 23
| 35
|
VOLUMELEVER
| Only show the volume lever.
<EMBED
SRC="../graphics/sounds/1812over.mid"
HEIGHT=20 WIDTH=74
CONTROLS=VOLUMELEVER
>
gives us
This value is usually used in conjunction with the MASTERSOUND attribute.
| 20
| 74
|