Forum Discussion
DaryaKucherova-
13 hours agoCommunity Member
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 Toggl...
Nedim
5 hours agoCommunity 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();
}