M
murrayatuptowngallery
I have looked at some mouseover/ sound object scripts and can't get
them to work. Most were more complex than needed and introduced several
new parameters for me.
I found a simple pair of html code segments that accomplish display of
an image and automatic 'display' (playback) of a .wav file, and
apparently are usable for both IE and NS,
"
<object height="100%" width="100%"
type="image/jpeg" data="picture.jpeg">
</object>
"
Displays an image.
"
<object
height="50%"
width="50%"
classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
<param name="AutoStart" value="1" />
<param name="FileName" value="sound.wav" />
</object>
"
Plays the sound without needing click on a player button.
Some questions:
1) What does the clsid: part refer to ? It doesn't work if that line is
removed.
2) What is the simplest way to play the sound with a mouseover the
image?
3) Is is possible to preset the playback volume with the 'object'
method? The default seemed obnoxiously loud to me.
Thank you
murray
them to work. Most were more complex than needed and introduced several
new parameters for me.
I found a simple pair of html code segments that accomplish display of
an image and automatic 'display' (playback) of a .wav file, and
apparently are usable for both IE and NS,
"
<object height="100%" width="100%"
type="image/jpeg" data="picture.jpeg">
</object>
"
Displays an image.
"
<object
height="50%"
width="50%"
classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
<param name="AutoStart" value="1" />
<param name="FileName" value="sound.wav" />
</object>
"
Plays the sound without needing click on a player button.
Some questions:
1) What does the clsid: part refer to ? It doesn't work if that line is
removed.
2) What is the simplest way to play the sound with a mouseover the
image?
3) Is is possible to preset the playback volume with the 'object'
method? The default seemed obnoxiously loud to me.
Thank you
murray