Make sure you replace "midi.mid" with the real file name, "true | false" with
either true or false, and "pixels", "value" and "-10000 | 0 | 10000" with a
number.
What It Means
Below is a list of what everything means:
WIDTH="pixels" Defines the
width of the embedded object in pixels.
HEIGHT="pixels" Defines the
height of the displayed object in pixels.
NAME="FileName" VALUE="midi.mid"
The URL at which the sound file can be found. *
Required
NAME="AutoRewind" VALUE="true | false" Controls whether Media Player
automatically returns to the beginning of the selection when it reaches the end
of the selection.
NAME="Balance" VALUE="-10000 | 0 | 10000" Controls the left/right stereo
balance of any audio. -10000 is 100% left speaker, 10000 is 100% right speaker,
and 0 is perfectly balanced.
NAME="Autostart"
VALUE="true | false" Controls whether the
Media Player automatically plays the file when the page is done loading.
NAME="ShowDisplay" VALUE="true
| false" Controls if the title and artist of the clip are
shown.
NAME="ShowControls" VALUE="true | false" Controls if the play, pause, stop, etc
buttons are shown.
NAME="ShowTracker"
VALUE="true | false" Controls if the play
tracker is shown.
NAME="PlayCount" VALUE="value" Controls the number of times the file is
played. A value of 0 repeats forever.
Make your own buttons
You can even make your own play/stop/etc buttons.
The ONCLICK commands can be added to images also.
You can add style to your buttons like this..... <INPUT TYPE=button VALUE="Play" ONCLICK="MPlyr.Play()" style="background-color:lightgreen"> <INPUT TYPE=button VALUE="Pause" ONCLICK="MPlyr.Pause()" style="background-color:pink"> <INPUT TYPE=button VALUE="Stop" ONCLICK="MPlyr.Stop()" style="background-color:hotpink">