Force Rise Courses to Start from Beginning

Jan 15, 2020

Hello Articulate community -

Is there a way to force Rise courses to always start from the beginning when they're launched from an LMS?  Our courses currently save user progress (bookmark), so when they're launched multiple times they always start from the latest point of progression.  Because of the nature of our content, we don't want this to happen.

Our LMS is eLogic.  We'd been investigating a solution on their end, but they've determined that the fix will need to be made in our authoring tool, Rise.  Is it possible to disable bookmarking in Rise?

Any help or insight would be greatly appreciated from the community!

Thank you!

4 Replies
Bora MERMER

Hello Leigha,

Scorm itself defines the interaction between the LMS and Scorm content in this page;

https://scorm.com/scorm-explained/technical-scorm/scorm-2004-overview-for-developers/

 

Their statement is like this;

"

cmi.location is the data element that describes the user’s location in the content

When the content begins (after it has called Initialize();), it may want to make this call to find out where the user left off and return him to that point:

strLastLocation = objAPI.GetValue("cmi.location");
When the content goes to another area, it might make these calls to save the user’s location:

blnSuccess = objAPI.SetValue("cmi.lesson_location", "page3");
blnSuccess = objAPI.Commit("");

"

So, to block this interaction; either you can manipulate your LMS to NOT GetValue, or you should block your Scorm content from sending the location value. I believe you can alter the location information of the scorm content from LMSAPI.js file, BUT, both of these choices can result with various errors.

 

I can suggest you to make some tryouts on these scenarios.

If anything works, I'll be more than happy to see the working method and the results.

Good Luck! :)

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