Forum Discussion
How to Remove Only Certain Playback Speed Options (e.g., 1.75x and 2x) from the Storyline Player?
- 5 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.
Hi Haseeb​!
I understand you would like the ability to limit or customize the available playback speeds in Storyline!
I noticed that you've also connected with my colleague Darrell, through a support case. I see that he's submitted a feature request on your behalf. We'll be sure to update you if we release a future enhancement, to Storyline's control of playback speed.
In the meantime, I'll open the floor to our community to share their insight and suggestions!
Related Content
- 3 months ago
- 8 months ago
- 9 months ago