Hi all,
Having issues with using the attemptlimit for assessments. For course content, the functionality works, but for assessments (quiz) - the quiz does not get locked.
Have trawled through examples - and have had no luck locking the quiz.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:imsss="http://www.imsglobal.org/xsd/imsss" xmlns:lom="http://ltsc.ieee.org/xsd/LOM" xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_v1p3" xmlns:adlseq="http://www.adlnet.org/xsd/adlseq_v1p3" xmlns:adlnav="http://www.adlnet.org/xsd/adlnav_v1p3" xmlns:imsqti_v2p0="http://www.imsglobal.org/xsd/imsqti_v2p0" identifier="DashWriterLearningPackage" version="1.0" xmlns="http://www.imsglobal.org/xsd/imscp_v1p1">
<metadata>
<schema>ADL SCORM</schema>
<schemaversion>2004 4th Edition</schemaversion>
</metadata>
<organizations default="Dash">
<organization identifier="Dash" adlseq:objectivesGlobalToSystem="false">
<title>dasdasdsdfsdfsdfasd</title>
<item identifier="ITE-1" identifierref="RES-PAGE1">
<title>Page 1</title>
<imsss:sequencing>
<imsss:limitConditions attemptLimit="2"/>
</imsss:sequencing>
</item>
<item identifier="QUIZ_1" identifierref="RES_QUIZ_1">
<title>Test</title>
<imsss:sequencing>
<!-- Rule to disable the pre test after exceeding attempt limit -->
<imsss:sequencingRules>
<imsss:preConditionRule>
<imsss:ruleConditions>
<imsss:ruleCondition condition="attemptLimitExceeded"/>
</imsss:ruleConditions>
<imsss:ruleAction action="disabled"/>
</imsss:preConditionRule>
</imsss:sequencingRules>
<imsss:limitConditions attemptLimit="2"/>
</imsss:sequencing>
</item>
<imsss:sequencing>
<imsss:controlMode flow="true" />
</imsss:sequencing>
</organization>
</organizations>
<resources>
<resource identifier="RES-PAGE1" adlcp:scormType="asset" type="webcontent" href="resources/Page1.html">
<file href="resources/Page1.html" />
</resource>
<resource identifier="RES_QUIZ_1" adlcp:scormType="sco" href="resources/QUIZ_1.html">
<file href="resources/QUIZ_1.html" />
</resource>
</resources>
</manifest>
Thanks in advance!
Keith