KarimMossadek
2 months agoCommunity Member
Storyline: How to hide/remove the volume/Sound icon
Hi all,
If you want to hide the (native) volume icon in a specific slide(s), you will have to do this:
-
Create a new trigger in each slide you want to hide the icon.
-
Action: Execute JavaScript
-
Paste this JS code below:
function hideVolumeControl() {
var volumeControl = document.getElementById('volume');
if (volumeControl) {
volumeControl.style.display = 'none';
}
}
hideVolumeControl(); -
When: When the timeline starts
-
On: This slide.
I hope that the Storyline team will add the possibility of hiding these controls natively.
Kr,
Karim