Forum Discussion
Passing Storyline Scores to LMS
So I have read numerous posts on how to create a JavaScript trigger to send a custom score to an LMS but am still struggling (after many days).
To begin with "baby steps", I create a one slide project. Place a button on it and set a trigger to execute the following JavaScript when clicked...
//get LMS API
var lmsAPI = parent;
//set score; the first number is the score
lmsAPI.SetScore(70, 100, 0);
//set status; possible values: "completed","incomplete", "failed", "passed"
SetStatus("completed")
I then added a second button to exit course.
When published to LMS, set Scorm to 1.2 (for Canvas) and tracking to slides.
Published, uploaded as graded assignment to Canvas and tested.
Rather then recording a score of 70% (or 70 points if setting the assignment grading to "points") it always defaults to 100%.
Any ideas on what may be the problem?
Thanks!
Bill Creger
Hi Bill,
please remove the following line from your code above.
var lmsAPI = parent;
Please test and let us know what happened.
Ajay Khatri