How to display learner response in a second presentation?

Jan 30, 2020

I would like to have learners enter a short answer response into one Storyline presentation and then view that response later in the course via a second Storyline presentation. The learner response from the first Storyline presentation is saved in Brightspace and can be viewed via the SCORM Report on the admin side, but I can't figure out how to call and display that learner response in the second Storyline presentation.

Using the code below I was able to call the student name from Brightspace and display it on the screen, but I can't figure out how to call and display the learner response. Can you help?

function findLMSAPI(win) {
if (win.hasOwnProperty("GetStudentID")) return win;
else if (win.parent == win) return null;
else return findLMSAPI(win.parent);
}
var player=GetPlayer();
var lmsAPI = findLMSAPI(this);
console.log(lmsAPI.GetStudentName());
var studentName = lmsAPI.GetStudentName();
player.SetVar('name', studentName);

Be the first to reply

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