Forum Discussion
KarimMossadek
4 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
- JoeFrancisCommunity Member
Considering the Player already does this globally, where would propose this functionality exist at the Edit Slide level? If I later change the global setting in the Player, how will that affect the slides' settings? Also, how would you propose I be able to quickly see which slides are overriding the global setting?