Forum Discussion
SalenaSoria-59f
2 years agoCommunity Member
How do I activate the new Transcript button for learners to use?
Hello, I saw in this article: https://articulate.com/support/article/Storyline-360-Video-Transcripts#generate-transcripts that a person is able to now add a synchronized transcript from closed capti...
Jürgen_Schoene_
2 years agoCommunity Member
here is a solution to show/hide transcripts with normal buttons (-> Javascript trigger)
"Rectangle 2" is visible -> everything keeps in synch
https://360.articulate.com/review/content/b5432230-e408-4797-bfe3-f9728d503f15/review
toggle Transcripts:
document.querySelector(".video-transcript").click();
show Transcripts:
document.querySelector(".video-transcript:not(.enabled)").click();
hide Transcripts:
document.querySelector(".video-transcript.enabled").click();
- JodiSansone2 years agoCommunity Member
Thank you for sharing your file. I am using this feature for the first time and I was trying to figure out how to display the transcript panel automatically the same way you can display captions with a variable. Your javascript helped!