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...
DiarmaidCollins
Community Member
There has been no feature added to do this AFAIK, but Lizzie's solution above still works for me:
//mute/unmute
// Use the global DS object if it exists, otherwise try require:
var appState = window.DS ? DS.appState : require("helpers/appState");
appState.onToggleVolume();
MarcRaskinski-3
4 years agoCommunity Member
Thank You! The other code offerings here did not work for me but yours (or Lizzie's?) did! Thanks!