1. | Create the desired movie or sound.
|
2. | In your (X)HTML document, type <object classid="clsid:6bf52a52-394a-11d3-b153-00c04f79faa6" id="player".
|
3. | Next type width="w" height="h", where w and h are the size in pixels of the media player that you'd like to embed.
|
4. | Type > to complete the initial object tag.
|
5. | To tell the player where the media file is, type <param name="url" value="movie.wmv">, where movie.wmv is the name and extension of the movie file.

|
6. | If desired, you can type <param name="autostart" value="false"> in order to keep the file from playing automatically. The default is TRue.
|
7. | If desired, you can type <param name="showcontrols" value="false"> to hide the play, rewind and other control buttons. The default value is true.
|
8. | For browsers besides Internet Explorer, type <embed type="application/xmplayer2" id="MediaPlayer" to tell them what to expect.

|
9. | Next type src="http://www.movie.wmv", where movie.wmv is the location, name, and extension of the movie file.
|
| |
10. | Type width="w" height="h">, where w and h are the dimensions in pixels of your movie file.
|
11. | If you want the movie to start playing automatically, type autostart="true".
|
12. | If you want to hide the control buttons, type showcontrols="false".
|
13. | Type /> to complete the embed element.
|