Copy link to clipboard
Copied
Hi People,
I have developed a package where the learner will always be taken back to the Home Page to check their progress. This however, will make it difficult to record that they have completed the package - normally defined by the quiz preferences..
I would like to add a button on the home page which when clicked either sends an in process type code to the LMS or when all sections completed, a completed code.
Ideas please.
TIA
Andrew
You don't need a quiz. Each interactive object has a Reporting section, when you check it, you can attach a score. User doesn't have to know that there is a score, it will be just used to set a Passing score, and the result can be used for the Completion criterion.
Copy link to clipboard
Copied
A work flow which I already did use a couple of times for similar use cases:
Copy link to clipboard
Copied
Thanks,
I was thinking much the same way. However, there is no quiz in the eLearning (or at least only a knowledge check) so not sure how I will be able to attach a score to that button.
Is there some JavaScript I could use instead?
Andrew
Copy link to clipboard
Copied
You don't need a quiz. Each interactive object has a Reporting section, when you check it, you can attach a score. User doesn't have to know that there is a score, it will be just used to set a Passing score, and the result can be used for the Completion criterion.
Copy link to clipboard
Copied
Found this on another post which I will test:
SCORM_CallLMSSetValue('cmi.core.lesson_status', 'completed');
SCORM_CallLMSCommit();
SCORM_CallLMSFinish();
Thanks
Andrew
Copy link to clipboard
Copied
Needs to be a SCO as well... since it is a SCORM call.
Copy link to clipboard
Copied
Probably why it didn't work:-( Its a normal captivate zipped file.
Copy link to clipboard
Copied
Indeed, you have to configure your file as a SCO, whether you use my approach with a scored button or the SCORMCall.
Copy link to clipboard
Copied
To clarify, I am publishing as a SCORM 2004 zipped file from the publish. Our LMS and SCORM CLOUD both recognise the resulting package.
On that basis should the SCORM calls still work? Because they don't appear to.
Andrew
Copy link to clipboard
Copied
Sorry, misunderstood. I cannot help you with the SCORM calls, I'm not an expert in SCORM. My button approach worked in several LMS's where I used it, sometimes with 1.2, sometimes with 2004.
Copy link to clipboard
Copied
All good:-) Your button approach was what I was thinking of and you confirmed that. Now to see if I can resolve the other issue. Probably another post after the Xmas break.