Forum Discussion

SalenaSoria-59f's avatar
SalenaSoria-59f
Community Member
2 years ago

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 captions. I have added in the closed captions to the slides I needed to and I am trying to locate where within the "player" I can add the option to show the "transcript" button for learners. 

I am currently using the Modern style, and menus/controls are on. For player controls I only see options for: Play/Pause, Volume, Captions, Playback speed, accessibility controls, full screen, search, & seek bar (no transcript). 

I tried clicking on the accessibility controls to see if the option is within this button, but it was not. Where can I find the transcript button that was shown in the first image within the article? Any insight is greatly appreciated!

Also, I did not import my captions from another file, I just copied and pasted the text I needed into the caption editor within storyline. 

  • I'm still so frustrated with this!  I have read the articles, watched tutorials, and followed this discussion; but I STILL can't get the transcript option to work.  I can see the accessible video controls, but the are not active because when I click on them nothing happens. (See screencast)

    What am I missing here?

  • please upload here in the forum a .story file with your problem (only this singe slide with video)*

    then i can test where the problem is - the .story file or your installation

    * to really delete unnecessary content in the file, please save 2x after removing content

    • Jürgen_Schoene_'s avatar
      Jürgen_Schoene_
      Community Member

      it looks like there is a transparent rectangle (???) above the video, which blocks all mouse clicks on the video navigation bar

      if you upload* your source file (.story) I can take a look at the project

      *as attachment here in the forum (-> button "Add Attachment" below)

    • Jürgen_Schoene_'s avatar
      Jürgen_Schoene_
      Community Member
      • duplicate the original .story file (-> new name !)
      • open the duplicate
      • delete all slides except the one with the video
      • save the file
      • save the file again ! (now other content is really deleted and the file small)

       

  • 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();
    • JodiSansone's avatar
      JodiSansone
      Community 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!