Sound doesn't play when I use Firefox.
If plays with IE and Safari! Here is the code:
<embed src="http://www.myWebSite.com/Play/Sound/someSound.wav" autostart="false" width="1" height="1"
id="someSound" enablejavascript="true" />
Somewhere in the JS, I have this: playSound("someSound");
function playSound(mySound) {
var snd = document.getElementById(mySound);
try {
snd.Play();
}
catch (e) {
try {
snd.DoPlay(); // Some browsers doesn't understand the Play() command
}
catch (e) {
// Do nothing if no Windows Media Player nor Quicktime installed
}
}
}
Besides, when I try some other website with embedded sound, it plays! Why? Any clue welcome :-)