Skip to main content
Participant
August 12, 2020
Question

Closed captions whole project setting

  • August 12, 2020
  • 2 replies
  • 372 views

I know how to create closed captions, and I know how to change their position for the individual slide/ for the project. 

I want to be able to give the learner the option at the beginning of project to choose if they would like closed captions on or off. 

Could anyone please step me through if this is achievable?

 

    This topic has been closed for replies.

    2 replies

    Lilybiri
    Legend
    August 12, 2020

    There are many ways to do so.

    If you are using a default playbar, it can have a CC button which can be used to turn CC on. By default CC is off when you don't edit that setting. That may be the easiest way: point to that button and explain the learner.

    If you don't use a default playbar, you can create a custom button to turn CC On and Off. You could use the shared action explained in detail in this post, which is based on a multistate button:

    http://blog.lilybiri.com/1-action-equals-5-toggle-buttons

    I had included that action in the Library provided with my presentation about Advanced and Shared actions.

     

    If you really want to offer a clear choice on the first slide, you can do this also in many ways:

    • by using a Text Entry Box with two choices: CC On and CC Off
    • by using the Radiobuttons interaction with two choices: : CC On and CC Off
    • ..

    Both scenarios store the choice in a variables, which I'll label 'v_choice'. You will then need a button which triggers a conditional action checking that variable:

    IF v_choice is equal to 'CC On'

         Assign cpCmndCC with 1

    ELSE

         Assign cpCmndCC with 0

     

    Participant
    August 13, 2020

    Thank you so much! 

    I used the CC in the playbar option, and will direct learners to this at the beginning of the project. 

    Thanks again for your swift help ! 

     

    Lilybiri
    Legend
    August 13, 2020

    Fine. To close the thread and help future users, is it possible to indicate one or more answers as Correct please?

    RodWard
    Community Expert
    Community Expert
    August 12, 2020

    The System Variable cpCmndCC can be set to either 0 or 1 to control the visibility of the Closed Captioning.  Give them a button near the beginning of the course where clicking the button will Assign the system variable accordingly.  I would have CC off by default and ask them if they want to turn it on.

    Participant
    August 12, 2020

    Hi Rod, 

    Thanks for your reply, you might have to explain a little deeper for me please. 

    I have found the system variable and it is currently set to 0 , how do I go about assigning it to a button ? 

    Thanks