Forum Discussion
PatriceSigmon
13 years agoCommunity Member
Javascript to MUTE audio?
Is it possible to MUTE audio in Storyline? I'm working on a course with a ground-up custom interface with a button that's supposed to mute/unmute - not pause/play or stop/play - the audio.
Are t...
juliewynn
11 years agoCommunity Member
If anyone is interested, I used:
$('audio').each(function(){
this.muted=true;
});
$('audio').each(function(){
this.muted=false;
});
- TonyJohnson10 years agoCommunity Member
Hi Julie, thanks for this. What do you attached the code to? I got the flash version to work, but want to get the html5 version to work as well.
Tony
- KirbyWillis10 years agoCommunity Member
I know this is an old post, but has anyone ever gotten the Javascript mute code to work in Chrome? It works locally, but not when hosted remotely.