Skip to main content
Inspiring
June 20, 2018
Question

Partial scoring dilemma with LMS reporting of custom quizzes

  • June 20, 2018
  • 2 replies
  • 575 views

I have four custom multiple choice quizzes that need to have partial scoring based on getting the correct answer on the first or second try.  For each quiz a correct answer on first try gives 25 points. On second try it gives 15 points.  You can only get one or the other.  The scores are attached to shape buttons that are "Included in Quiz",  added to the total,  and reported to the LMS.  The learner needs to score more than 60 points from all four quizzes to pass. I have the Quiz preferences set to report points and pass or fail on the 60 point threshold.

The problem is Captivate will not allow more than 100 points when all scored objects are totaled up.  I can't simply report the points scored.  It suggests reporting the scores as a percentage. Since the total of scored objects is 160, this means that 60 points will be displayed as 37.5%.  The desired outcome would be a display of 60%.

It's not crucial that a score be displayed by the LMS.  Just a pass or fail would suffice.  I could have a branching action that sends learners to a success or failure slide depending on the total score.  If they reach the success slide, they pass.  Is there a way to set up a pass or fail based on reaching a particular slide?

    This topic has been closed for replies.

    2 replies

    chrismay_at_delta6226261
    Inspiring
    June 22, 2018
    Leaving score aside, is there a way to set up a pass or fail based on reaching a particular slide?

    In your publish settings, under reporting, you can select Incomplete --> Complete

    then use some JavaScript on the particular slide On Enter action:

    SCORM_CallLMSSetValue('cmi.core.lesson_status', 'completed');

    SCORM_CallLMSCommit();

    So whenever a user hits this slide, the lesson will send a completed status to the LMS. Be sure to make sure your lesson logic is sound and users cannot skip slides with the next button or use the menu to jump over content you want the to see.

    You might need to change your question types to Knowledge Checks so they will not count as a quiz and the lesson try to report the score when the quiz is complete.

    Lilybiri
    Legend
    June 20, 2018

    What you want is not partial scoring, as is built in the Quiz design for MCQ questions with multiple correct answers. Misunderstanding, sorry.

    I have a blog post about linking score to attempts somewhere. However, transmitting to the LMS is not treaded in that post. Hope someone else can help you, not so easy but I don't feel up to figuring this out.

    Inspiring
    June 20, 2018

    Thank you for your reply.

    Leaving score aside, is there a way to set up a pass or fail based on reaching a particular slide?

    RodWard
    Community Expert
    Community Expert
    June 21, 2018

    Thanks. You don't have to solve it with my files but can you give me a brief description of the method you used?  I'm not a JS coder so a workaround would be preferred.  Can you point me in the right direction?


    Perhaps if you are publishing to HTML5 you might be able to use the CpExtra HTML5 widget to achieve the result you are after.  It has a function that allows you to change the score that an interactive object reports to the quiz.

    http://www.infosemantics.com.au/adobe-captivate-widgets/cpextra/help/command-variables/positioning-slide-objects#xcmndSc…

    Basically the idea would be (in your case) that you want the interactive objects to report a REDUCED score value to the quiz if the user is on their second or third attempt.  Is that not correct?