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;
});
TonyJohnson
10 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