Forum Discussion
MattLeo-3da086a
8 years agoCommunity Member
SetStatus not working for SCORM 1.2 completion - Storyline 360 HTML5 Output
Hello everyone,
I'm in the process of upgrading some courses to Storyline 360 to utilize the HTML5 improvements. Due to the complexity of certain courses, we've found that the best method of setti...
SamanthaGrevas
7 years agoCommunity Member
Hi Ashley! I am using Storyline 3. The method that worked in Storyline 2 no longer works in 3:
SetStatus("completed");
The workaround is to call the methods in the SCORM API directly:
var player = GetPlayer();
player.SetReachedEnd(); //for complete
player.SetPassed(); //for passed
Best,
Sam