Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  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"

Code Block
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.