Forum Discussion
Blank screen after update
I believe I've found a solution to this issue which I've been able to tested successfully in Moodle and may work for other LMSs as well:
1. Unzip the Rise SCORM 1.2 zip package (I haven't tested this for SCORM 2004) and locate the file scormdriver.js in the /scormdriver folder.
2. Open scormdriver.js in Notepad or other text editor.
3. Locate this function, and highlight the entire line:
function SCORM_GetBookmark(){WriteToDebug("In SCORM_GetBookmark");SCORM_ClearErrorInfo();return SCORM_CallLMSGetValue("cmi.core.lesson_location");}
4. Replace it with this function:
function SCORM_GetBookmark(){WriteToDebug("In SCORM_GetBookmark");SCORM_ClearErrorInfo();return "";}
This basically disables the bookmark retrieval code so that while all the learner completion and progress status is retained (and shows on the left side Rise menu), it causes Rise to always restart at the opening page.
Then re-zip up the Rise SCORM package (make sure to create the zip from the root folder of the course) and re-upload to the LMS.