Skip to main content
abeardsl23
Inspiring
November 29, 2016
Question

Closed Caption Customization

  • November 29, 2016
  • 3 replies
  • 305 views

Hello, all.  Is there any way to customize how and where closed captions display on the screen?  I'd like to have them display within callout bubbles, so I only have to type the dialogue once (without having to copy/paste).  Additionally, assigning colors to them will also help my learners associate a CC message to a speaker (pink=girl speaker; blue=boy speaker, for instance)

Any ideas?

 

Adam

This topic has been closed for replies.

3 replies

TLCMediaDesign
Inspiring
April 6, 2017

If you are using HTML5 you can do it.

You would need to make sure there is no CC button to show CP's built in CC div.

Since the CC is actually text, you can attach and event listener that is triggered when the text in the CC div changes.

So with JavaScript you first need to get a reference to the CC div and and populate the variable that is the content of your bubble $$yourVariable$$.

This script will populate the variable with the initial text, and then cycle it as the CC text changes.

window.yourVariable = $("#ccText").text();

$("#ccText").bind("DOMSubtreeModified", function(){

     window.yourVariable = $("#ccText").text();

});

Ken40
Participant
April 5, 2017

There are controls for open and closed captioning in the Caption window. This Adobe video has some information: Create and customize subtitles |

Moderator: Please, this is a question about CC in Captivate, you are pointing to a video for Premiere Pro, totally different Adobe application

RodWard
Community Expert
Community Expert
April 6, 2017

That video is for Adobe Premier, not for Adobe Captivate.

RodWard
Community Expert
Community Expert
November 30, 2016

The default Closed Captions appear in the area provided at the bottom of the screen, and the learner has the option to show or hide this area.

If you want CC text to appear in normal callout captions you would need to manually add these captions to each slide and copy/paste the text from the Slide Notes area.  There is no option to do this automatically.