Question
What is the code for putting in your pass/fail score in the scorm manifest
Answer
Here are some example elements for both SCORM 1.2 and SCORM 2004 courses...
SCORM 1.2:
The element that establishes the passing score for an "<item>" in the manifest is called "<adlcp:masteryscore>". The element assumes that the <item> has content that will report a score via the SCORM API.
Example of the code for the manifest:
<item identifier = "ITEM1" identifierref = "RESOURCE1" isvisible= "true">
<title>Test Item</title>
<adlcp:masteryscore>100</adlcp:masteryscore>
</item>
SCORM 2004:
The <minNormalizedMeasure element identifies minimum passing scores for the objective. The value for this element should be between -1 and 1.
Example:
<item identifier="POSTTEST1">
<title>Module 1 -- Posttest</title>
<item identifier="POSTTEST_QUESTION1" isvisible = "false"
identifierref="RESOURCE_QUESTION1">
<title>Question 1</title>
</item>
<item identifier="POSTTEST_QUESTION2" isvisible = "false"
identifierref="RESOURCE_QUESTION2">
<title>Question 2</title>
</item>
<item identifier="POSTTEST_QUESTION3" isvisible = "false"
identifierref="RESOURCE_QUESTION3">
<title>Question 3</title>
</item>
<imsss:sequencing>
<imsss:objectives>
<imsss:primaryObjective objectiveID = "PRIMARYOBJ"
satisfiedByMeasure = "true">
<imsss:minNormalizedMeasure>0.6</imsss:minNormalizedMeasure>
<imsss:mapInfo targetObjectiveID = "obj_module_1"
readNormalizedMeasure = "false"
writeSatisfiedStatus = "true" />
</imsss:primaryObjective>
</imsss:objectives>
</imsss:sequencing>
</item>