Getting the Title of your Storyline 360 Course using JavaScript

Nov 06, 2017

Hello all,

I have a trigger in Storyline that sends the learner's notes made within the course to the specified email address. I was the subject of the email to contain the title of the course in which the learner is sending their notes from. I can easily hard code a variable with a subject, but we have over 400 courses so streamlining this process is a huge plus. Is there a way to get the title of the course using JavaScript?

6 Replies
Russell Killips

Hello Arika,

You can retrieve the course title using Javascript. I have attached an example for you to take a look at.

In the example, I created a Text Variable called: CourseTitle.

There is a button that executes some Javascript to retrieve the course title.

var player = GetPlayer();
player.SetVar("CourseTitle",document.title);

This discussion is closed. You can start a new discussion or contact Articulate Support.