Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Manually Reporting Score in SCORM 2004

Explorer ,
Feb 23, 2016 Feb 23, 2016

Having problems getting the score to report when I export to SCORM 2004. Wondering if there is a different syntax for SCORM 2004 (do I need scaled value)?

I've been using this snippet at the end of a lesson to send a simple score (in SCORM 1.2):

SCORM_objAPI.LMSSetValue('cmi.core.lesson_status', 'passed');

(function(){

  objLMS.SetScore(100,100,0);

})();

SCORM_objAPI.LMSCommit('');

SCORM_objAPI.LMSFinish('');

Thanks.

Stan Keathly

1.4K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Explorer , Feb 23, 2016 Feb 23, 2016

Well, I seem to be answering a lot of my own questions these days:

Here is how to submit a score for SCORM 2004 in Captivate:

SCORM2004_objAPI.SetValue('cmi.score.scaled', '1');

SCORM2004_objAPI.SetValue('cmi.score.raw', '89');

SCORM2004_objAPI.SetValue('cmi.score.min', '0');

SCORM2004_objAPI.SetValue('cmi.score.max', '100');

SCORM2004_objAPI.Commit("");

SCORM2004_objAPI.Terminate("”);


Hope someone else finds this helpful.

Translate
Explorer ,
Feb 23, 2016 Feb 23, 2016
LATEST

Well, I seem to be answering a lot of my own questions these days:

Here is how to submit a score for SCORM 2004 in Captivate:

SCORM2004_objAPI.SetValue('cmi.score.scaled', '1');

SCORM2004_objAPI.SetValue('cmi.score.raw', '89');

SCORM2004_objAPI.SetValue('cmi.score.min', '0');

SCORM2004_objAPI.SetValue('cmi.score.max', '100');

SCORM2004_objAPI.Commit("");

SCORM2004_objAPI.Terminate("”);


Hope someone else finds this helpful.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Help resources