Skip to main content
RCEditor
Inspiring
October 7, 2014
Answered

Prevent a quiz module to run again?

  • October 7, 2014
  • 1 reply
  • 935 views

Hello to all I have to solve an important problem.
I have a quiz that must be subjected to a series of people only once. This quiz has not thresholds for pass / fail, I'm interested only get a final score. Just like an exam in school. Only one attempt, one result.

With my software (LMS Litmos) I can not avoid to redo the quiz. But I can see how many attempts the person did and the various results.
As I understand it is one thing to set up Captivate.


I saw that there is a variable that can be recognized as an attempt is in progress (CpQuizInfoAttempts).


But there is a simple way to lock the course after it was done the first time?


How can I do?



Thanks so much!

This topic has been closed for replies.
Correct answer RCEditor

That is how the LMS should operate. The isuue is that they set the status to incomplete when initializing. Try this:

On the last slide of your project or when the lesson is complete, execute this JavaScript;

SCORM_CallLMSSetValue("cmi.comments", 2);

Then on enter of the first slide:

var myStatus = SCORM_CallLMSGetValue("cmi.comments");

alert(myStatus);

if (myStatus == "2" )

{

     DoFinish();

}


Thanks again for your help.
Unfortunately not even this attempt did not work with javascript.


These days I have left it up to the engineers LMS Litmos to try to figure out what's not working ...
eventually admitted that it is a lack of their platform,
and hoping in the future to solve the problem.

Thanks to all and
W CAPTIVATE!

1 reply

Lilybiri
Legend
October 7, 2014

If you set the number of attempts on Quiz level at 1, the user will be allowed only one attempt. But if he closes the course and reopens it, can try again.

Question Question Slides in Captivate - Captivate blog

RCEditor
RCEditorAuthor
Inspiring
October 7, 2014

Thanks a lot for your answer.

So, if the user complete my quiz, and on the platform LMS i see he's score too,

i can not avoid that he can retake the quiz and send me other results?

it's strange...

Lilybiri
Legend
October 7, 2014

No, it is not strange, because that is something you can configure in the LMS, at least I could do it in Blackboard.