Forum Discussion
Haseeb
7 months agoCommunity Member
How to Remove Only Certain Playback Speed Options (e.g., 1.75x and 2x) from the Storyline Player?
Hi everyone,
I'm working on a Storyline project and would like to customize the playback speed options in the built-in player. Specifically, I want to remove only the 1.75x and 2x speed options, wh...
- 6 months ago
Hi Haseeb!
Create a trigger that execute this javascript when slide start:const divs = document.querySelectorAll('div[data-speed="2"], div[data-speed="1.75"]');
// Loop through the found divs to hide their parent li element
divs.forEach(div => {
const li = div.closest('li');
if (li) {
li.style.display = 'none';
}
});
The speed options (2 and 1.75) will be hidden.
HannahWright-70
6 months agoCommunity Member
Could this be applied to a master slide and work for all slides in the project, or does it need to be applied to each slide?
Haseeb
6 months agoCommunity Member
Hi Hannah, Yes you can put this code snippet in the master slide and it will apply to all the slides.
Related Content
- 4 months ago
- 10 months ago
- 10 months ago