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...
JohnDoe12
11 years agoCommunity Member
julie wynn said:
If anyone is interested, I used:
$('audio').each(function(){
this.muted=true;
});$('audio').each(function(){
this.muted=false;
});
This solution doesn't seem to work in chrome, any ideas?