hypeDocument.stopAllSounds
Stops all playing soundfiles that have been loaded with hypeDocument.loadSound
/**
* hypeDocument.stopAllSounds 1.0
*/
hypeDocument.stopAllSounds = function(){
if (!hypeDocument.hasOwnProperty('_sounds')) {
return;
}
for(var id in hypeDocument._sounds) {
var snd = hypeDocument._sounds[id];
snd.pause();
snd.currentTime = 0;
}
}
Usage:
Given you have have sounds running that go attached through hypeDocument.loadSound this function will stop them and rewind them to their beginning.
hypeDocument.stopAllSounds();