Forum Discussion

TheOGMike's avatar
TheOGMike
Community Member
2 months ago
Solved

Removing the Playback Speed button

I noticed today that when activated, the Playback Speed button appears on all slides in a project. Is it possible to remove the button from non-video slides?

  • You can handle this only with JavaScript.

    On the Slide Master, create a trigger to Execute JavaScript when the timeline starts:

    var playbackSpeed = document.getElementById('playback-speed');
    playbackSpeed.classList.add('hidden');		
    

    This ensures the Playback Speed button is hidden on all slides, even if it's enabled in the Player properties.

    Then, on each video slide, create another trigger to Execute JavaScript when the timeline starts:

    var playbackSpeed = document.getElementById('playback-speed');
    playbackSpeed.classList.remove('hidden');		

    This will make the Playback Speed button visible only on video slides — or on any slide where this trigger is executed.

2 Replies

  • Nedim's avatar
    Nedim
    Community Member

    You can handle this only with JavaScript.

    On the Slide Master, create a trigger to Execute JavaScript when the timeline starts:

    var playbackSpeed = document.getElementById('playback-speed');
    playbackSpeed.classList.add('hidden');		
    

    This ensures the Playback Speed button is hidden on all slides, even if it's enabled in the Player properties.

    Then, on each video slide, create another trigger to Execute JavaScript when the timeline starts:

    var playbackSpeed = document.getElementById('playback-speed');
    playbackSpeed.classList.remove('hidden');		

    This will make the Playback Speed button visible only on video slides — or on any slide where this trigger is executed.