Forum Discussion

RubaAbudia's avatar
RubaAbudia
Community Member
2 months ago
Solved

Video Controls on Storyline

Hello,  Does anyone know how to disable video seeking on Storyline?  I want the video to have a seek bar, pause/play button, sound control button and full screen button but without letting the us...
  • Seb_Daubert's avatar
    2 months ago

    Hi, use this javascrit when you start the slide:

    /* Masquer la barre de lecture vidéo Storyline */
    (function hideSeekbar () {
      // cherche la div racine : <div class="video-seekbar draggable …">
      var seekbar = document.querySelector('.video-seekbar.draggable');

      if (seekbar) {
        seekbar.style.display = 'none';          // on la cache
      } else {
        // si elle n’est pas encore dans le DOM on ré-essaye dans 150 ms
        setTimeout(hideSeekbar, 150);
      }
    })();