Forum Discussion
DaryaKucherova-
16 days 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...
- 16 days ago
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
16 days 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();
}
- DaryaKucherova-14 days agoCommunity Member
Thank you very much, Nedim!