On a page I have the following working code for a sound:
<snd src='sound.mp3' loop='false' restart='true' fade='0' onlywhenactive='true' />
I want to add a delay, but when I change the code to this:
<snd src='sound.mp3' loop='false' restart='true' fade='0' onlywhenactive='true' delay='1000' />
It doesn't play at all. I've also tried doing a value of '1' instead of 1000. Any reason why this might be happening?