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
Community Member
If anyone is interested, I used:
$('audio').each(function(){
this.muted=true;
});
$('audio').each(function(){
this.muted=false;
});
KirbyWillis
10 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.