Updated xAPI Setup in Course Starters: Now Even Simpler!

Updated xAPI Setup in Course Starters- Now Even Simpler!_Blog Header 800x350

A while back, we combined all our coordinating templates, layouts and awesome interactions into one download file—a Course Starter. Each course starter has a different design and is packed with features like xAPI reporting, responsive mobile design, and pre-built interactions, so you can get more done in less time.

 

course starters example

 

Our new Course Starters for Storyline 3/360 and Captivate feature some changes on how we approach custom xAPI statements.

 

In the past, we set up custom xAPI templates to give you as much control over individual statement elements as possible (for a refresher on the components that make up xAPI statements, visit here: https://xapi.com/statements-101/).

 

Since each xAPI statement has at least 3 parts—and, each of those have at least 2 values themselves—this can get cumbersome quickly. We felt this to be true in our templates. And, so did a few of our users.

 

In response, we decided to simplify our xAPI statements a bit.

 

Now, all you need to do to get custom xAPI statements from your eLearning Brothers templates is enter a verb ID and a verb display variable on an interaction, and you're good to go. Nothing else needed. Really.

 

We're tapping into the information that each tool is already providing with its out-of-the-box statements to avoid needing to enter redundant information; or, in the case of Storyline, performing a sacrificial publish and manually checking the output XML.

 

Let's look at how our updated xAPI statements work in each tool.

 

Captivate:

 

In Captivate, we use several system variables to set up our custom statements.

 

1.) The Activity Identifier

 

We use the activity identifier that you enter in the publish settings as the basis for all our custom statements.

 

Captivate Publish Settings

 

Make sure this value is something unique to your organization, descriptive, and consistent.

 

Then, set it and forget it. We'll pick it up from there.

 

2.) The Current Slide Name

 

We use the activity ID variable together with the system variable for the current slide name to create a unique ID for the slide the learner is on. It matches the slide ID that Captivate uses on its "experienced" statement for the current slide.

 

We use this slide ID: as the base for individual object statements; as the object ID for any slide-level statements (like, "Susan mastered the drag and drop interaction"); and as the parent element in our custom statements' context blocks. This last bit allows us to map each custom statement to the slide it lives on, so you can get some deep, object-level analytics from your LRS.

 

Reporting dashboard - pie chart

 

(The above image is the context element from the dashboard of our Org Chart Click to Reveal interaction template. It gives us an at-a-glance indicator of the content usage on that particular interaction. In this case, it's nearly evenly split.)

 

3.) The Current Object Label

 

Now is where things get tricky.

 

To make our object-level IDs for custom statements, we basically just need to take our activity ID, add the current slide name to that, then tack on the name of the item that our learner is interacting with, and URL-itize it.

 

Originally we made this a manual process because there aren't system variables to explicitly track current objects in Captivate; you'd need to enter a name and ID for each object you wanted to track.

 

In a small interaction, this is no biggie.

 

In something like a glossary, where you're tracking 26 different button names (or more), this can be a big headache. That's potentially 52 different touch points on 26 different actions to set 1 value.

 

But again, no system variable to pull those values from.

 

For this update of our course starters, we opted to automate this value using Javascript.

 

Basically, we're taking advantage of how Captivate outputs its files.

 

Here's a real oversimplification for instructional purposes:

 

Captivate's output is HTML5—it basically creates a web page for each slide in a course.

 

That web page is made of individual DIV elements.

 

Each object on screen in an interaction gets its own DIV element.

 

Each DIV element gets an ID value, which Captivate generates using the related object's name/label properties.

 

We take advantage of that to automate the object-level IDs of our statements.

 

We use some simple Javascript to get the value of a div's ID based on the last element a learner interacted with. That value is then URL-itized and used as the Display and the tag for our ID value for the object*.

 

All you need to do is set the xAPI verb.

 

As of now, this is a free-form field; put whatever you want into the variables here.

 

Check here for a full list: http://xapi.vocab.pub/verbs/index.html

 

One thing we've done to make this easier though, is add the actions that set these values to Shared Actions, instead of Advanced Actions.

 

Captivate Actions dialogue box

 

This keeps the advanced actions pane decluttered, and allows you to get at the parameters in an object's actions more easily.

 

Just click the parameters button adjacent to the object's assigned action in the properties pane, then start adjusting.

 

We've tried to add clear descriptions to each parameter.

 

xAPI descriptions in Captivate templates

 

After you've set the verb values, publish to xAPI and deploy as you would.

 

You'll get custom xAPI statements with a negligible amount of work, tied contextually to one another, and the course as a whole.

 

Easy peasy.

 

Storyline:

 

In Storyline, we've taken a slightly different approach.

 

We still rely on the values you enter into the xAPI configuration pane at publish, but we just can't directly access them afterward.

 

Because Articulate doesn't expose its system variables for many things, we had to get a little crafty.

 

1.) Initialize xAPI

 

The first thing we do in a Storyline interaction is initialize our xAPI.

 

We do this by using an xAPI Initialize shape that sets our verb ID and Display values for the entire slide once the slide loads.

 

Storyline xAPI initialize shape

 

 

Since most learner actions in an interaction are pretty similar, it makes sense to template-ize this and set it once, for everything on that slide.

 

If you prefer to have unique values for each of the objects you're tracking on an individual slide, just add custom triggers to those objects, or wherever we've indicated the triggers run from.

 

Once those values are set, the initialize shape executes a little Javascript to get some information about where our learner is in the course:

 

We query the LRS to get the ID of the last slide the current learner "experienced," as well as its parent. (These values come from whatever you enter in at publish. We're just backdoor accessing them.)

 

We then store those values to some SL variables for later use.

 

Storyline xAPI triggers

 

 

One quick note here—it may take a second for this initialization info to come back from the LRS (maybe more, depending on your LRS/setup, so do some testing).

 

If you allow the learner to start interacting with trackable objects before this info is back and stored in Articulate, you may get some errors on your statements.

 

Specifically, they may map to the wrong slide!

 

(Usually the leftover slide data from the previous interaction gets used here because it isn't being overwritten with new stuff.)

 

To combat this, just wait a second or two to load your interaction elements into the slide. This gives the two tools time to talk, and most always fixes the potential error before you encounter it. Popping some hotspots with no triggers over top of your interact-able objects for a time is another simple way to do the same thing.

 

storylineXAPI3

 

Alternatively, you could get crafty with the script in the initialize shape and set an error-checking variable that flags something in your course.

 

That might be a topic for a future post if we have enough comments requesting it. Let us know below if you think it's something we should cover.

 

Back to it!

 

After we successfully query the LRS and store the values we retrieve, we pause.

 

If you're just trying to get statements going as quickly as possible, there's really nothing more you need to worry about.

 

In that case, you're done—enter one set of variable values at the top of the slide, and then publish.

 

Feel free to stop reading now, even.

 

It's that easy.

 

For those of you still interested and reading, I'll cover how we do the rest.

 

2.) Get The Current Object Label and Send the Statement

 

Object-specific actions get sent when a learner interacts with that object.

 

When a learner clicks tab 01, we send a statement that says they did just that.

 

The verb value and basis for our statement come from the initialize shape, but the individual statements are typically on the objects themselves.

 

Storyline xAPI statements

 

Before the statements are sent though, we still need to gather object names.

 

Again, there's no automated way to do this.

 

In the old version, we did it with variables.

 

Now, we pick up the object names in Storyline very similarly to how we do it in Captivate: we use Javascript to grab the ID of the last object the learner interacted with, and use that for our object ID and display value.

 

One difference is that we rely on aria labels—or the accessibility text you enter for an object—to drive the object names and IDs.

 

This is due to how Storyline outputs its files; the two tools handle things a little differently in this regard as well.

 

Make sure you use the accessibility labels to title whatever objects you're tracking as intended in the LRS.

 

Double-check that "tab 01" object does in fact show that way in the accessibility pane.

 

Beyond that difference, the approach is very similar.

 

Object-level statements use the slide ID as their parent and the course as their group in context; any success or general statements are mapped to the slide and will report as slide-level data.

 

Once you have your course built, and verbs added to each slide, just publish to xAPI and deploy as you would with standard Storyline file.

 

And that's it.

 

We've tried to make it so you can get super-detailed, useful reporting out of your courses without having to know much at all about xAPI, and without having to do much setup either.

 

We think you'll like the new approach!

 

Comment on this blog and let us know, or reach out to us through our contact form, or on social media.

 

To test out our new xAPI-enabled templates, sign up for a free 7-day trial of the entire eLearning Brothers Asset Library.

 

Free Trial

 

 

*In a few select cases, this may be a variable value, but this is the exception to the rule.