Forum Discussion
AkashJambhorkar
8 years agoCommunity Member
Java script for MUTE/UNMUTE audio in Storyline 3
Hello All,
Is it possible to MUTE/UNMUTE audio in Storyline 3 (HTML5 output)? I'm working on a course with a custom interface with a button that's supposed to mute/unmute - not pause/play or stop/...
ReenaMittal-e9a
6 years agoCommunity Member
Hi Christina,
Please use this code for audio mute & unmute in articulate storyline 3 & 360.
Mute:
var appState = require("helpers/appState");
appState.onVolumeChanged(0);
Unmute:
var appState = require("helpers/appState");
appState.onVolumeChanged(0.8);