Hello...
i'm getting any further with sound in edge...and using them with the mouse-over action like...
sym.play();
newSound = new Audio();
newSound.innerHTML = "<source src='sounds/bell.ogg' type='audio/ogg' /> <source src='sounds/bell.mp3' type='audio/mpeg' />";
newSound.volume = 0.3;
newSound.loop = true;
newSound.play();
The only thing, i want that the sound starts when (as an example) a car drives into the animation...(which happen 10sec in the totally time of the animation)
How can i do that...? In the basis action (mouseover / mouseout / click / double click) i ain't seeing something which is doing that.....
grt