<BGSOUND SRC="sinema.mp3"
LOOP="n|INFINITE"
VOLUME="n"
>
|
Problem is this is only supported by Microsoft.
This is how the backround sound is being done
on this web page
which is the web page your
looking at.
LOOP=n is the number of times the sound will be played.
Left off it plays 1 time.
Use LOOP=INFINITE to play forever.
|
<EMBED SRC="sinema.mp3"
AUTOSTART="TRUE"
HIDDEN="FALSE"
LOOP=TRUE|FALSE|n
CONTROLS=VOLUMELEVER |
STOPBUTTON |
PAUSEBUTTON |
PLAYBUTTON |
SMALLCONSOLE |
CONSOLE
>
|
This page uses this technique.
It gives you a little ICON that you can
use to control the sound.
Stop, start, volume, and drag the location of play,
that type of stuff.
LOOP=TRUE - play it forever, LOOP=FALSE - play it once, LOOP=n - play it n times.
|