Forum Discussion

DaryaKucherova-'s avatar
DaryaKucherova-
Community Member
16 days ago

Transcript panel on by default

Is there a way for the Transcript panel appear next to the video by default in Storyline, without having to select any buttons? 

Also, could the JAWS reader label for the button be "Transcript Toggle Button?"

thanks,

Darya

  • By default, there is no built-in setting in Storyline that automatically positions the Transcript panel next to the video. However, you can achieve this effect using JavaScript. Execute JavaScript trigger when the timeline starts on this slide:

    const transcriptBtn = document.querySelector('.modern-video-control.video-transcript');
    if (transcriptBtn && !transcriptBtn.classList.contains('enabled')) {
        transcriptBtn.click();
    }

     

  • Nedim's avatar
    Nedim
    Community Member

    By default, there is no built-in setting in Storyline that automatically positions the Transcript panel next to the video. However, you can achieve this effect using JavaScript. Execute JavaScript trigger when the timeline starts on this slide:

    const transcriptBtn = document.querySelector('.modern-video-control.video-transcript');
    if (transcriptBtn && !transcriptBtn.classList.contains('enabled')) {
        transcriptBtn.click();
    }