Skip to content

Instantly share code, notes, and snippets.

@OmkarKirpan
Created March 1, 2023 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OmkarKirpan/6cef0106fa73a0361a84e2964db26b9e to your computer and use it in GitHub Desktop.
Save OmkarKirpan/6cef0106fa73a0361a84e2964db26b9e to your computer and use it in GitHub Desktop.
SCORM LMS Hack
let ok = SCORM_GetAPI()
// setting lesson_status
ok.LMSSetValue('cmi.core.lesson_status', 'completed')
ok.LMSGetValue('cmi.core.lesson_status')
// setting score
ok.LMSSetValue('cmi.core.score.raw', '100')
ok.LMSGetValue('cmi.core.score.raw')
// Saving
ok.LMSCommit()
ok.LMSFinish()
@OmkarKirpan
Copy link
Author

select content frame in console in devTools

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment