What is Scorm?

SCORM, which stands for Sharable Content Object Reference Model, is a set of technical standards for eLearning software products. SCORM files are a way to share their training and learning material with the students.

At CourseCo, we allow our Admins to upload and share Scorm content with their students for training and learning purposes.

Note: Scorm Integration is a custom feature. Please contact your Project CRM Lead for a demo and installation.

Uploading Scorm Content to a schedule

To upload and share Scorm Content with your students, please see the steps given below.

Please see our User Guide on how to add a course in CourseCo

Please see our User Guide on how to add a schedule on CourseCo

Please include at least 2 CourseCo content slides when adding Scorm files

  • Use 1 slide as a welcome slide

  • Use a final slide as a closing slide

You may experience issues with your content IF you do not include CourseCo slides

Please notes that a scorm file must be downloaded and saved on your local machine so that you can browse and upload it successfully

Outcome:

  1. Your Scorm file will be uploaded and saved in Content

  2. Students can go through this scorm training material

  3. You can provide access range for this training content as per your wish

Editing your scorm files with a redirect back to CourseCo

Your students have completed all the content in the scorm i.e. come to the end. What next, how do they know how press ESC / navigate back to the CourseCo student portal window to eg Complete their exam.

Within Scorm, you can now add a CourseCo script eg add a button with a redirect behind it. This will aid students who may not understand how to navigate back/ out of Scorm content .

  1. Open your 3rd Party scorm file.

  2. Go to eg the last section.

  3. add a button eg ‘Continue to Exam’

  4. Behind the button add the below script - Within your scorm this would be called "click handler"

if(window.top.API) {
  window.top.API.openNext();
} else {
  if(window.top.opener.API) {
    window.top.opener.API.openNext();
  } else {
    console.log("API not found");
  }
}

Once this is installed, when the student selects the button they will exit fullscreen and automatically it will open next content of the course.