Question
Presenter Published for LMS
We are testing Presenter 7.0 with our Docent 6.5 LMS and we
are having issues with the LMS updating transcripts properly.
The course we are testing has no quiz and we have published the course for both AICC and SCORM 1.2 with the following Presenter reporting settings:
1. Enable reporting for this presentation (checked)
2. AICC or SCORM (checked as appropriate)
3. Choose report data > Report slide views only > Slide View Completing 100%
4. Report Pass or Fail > Report Complete/Incomplete (checked)
5. Report Score to LMS as > Score (checked)
6. Reporting Level > Only report the score (checked)
For the AICC course, upon viewing all the slides, only reports back to the LMS that the course is "In-Progress". It does not complete.
For the SCORM course, upon viewing all the slides, the transcript remains in "Enrolled" status as if no communication between the course and the LMS ever occurred.
I have been working with our LMS vendor and they have indicated that Adobe Presenter is what they call a "Noncomforming AICC/SCORM course". They've asked us to check if Presenter completes the course from a putparam (AICC) or LMSSetValue/Commit(SCORM) call instead of exitau (AICC) or LMSFinish (SCORM). The default behavior in our LMS is not to allow nonconforming courses to mark complete.
They did provide the following code for us, but it did not resolve the issue.
--------------------------------------------
AICC_Catcher.prototype.allowNonConformingCoursesToMarkComplete = function(courseCreator)
{
var regexpstr = "Breeze Presenter";
if (regexpstr.length > 0 ) {
courseCreator = courseCreator || "";
if (courseCreator.length > 0) {
re = new RegExp(regexpstr,"i"); // The course creator match is case insensitive.
return courseCreator.search(re) != -1;
}
}
return false;
}
--------------------------------------------
Has anyone else experienced this problem with their LMS and Presenter? Does anyone have any suggestions on how I can help our vendor resolve this issue? We really like Presenter and would like to use it.
Thanks!
The course we are testing has no quiz and we have published the course for both AICC and SCORM 1.2 with the following Presenter reporting settings:
1. Enable reporting for this presentation (checked)
2. AICC or SCORM (checked as appropriate)
3. Choose report data > Report slide views only > Slide View Completing 100%
4. Report Pass or Fail > Report Complete/Incomplete (checked)
5. Report Score to LMS as > Score (checked)
6. Reporting Level > Only report the score (checked)
For the AICC course, upon viewing all the slides, only reports back to the LMS that the course is "In-Progress". It does not complete.
For the SCORM course, upon viewing all the slides, the transcript remains in "Enrolled" status as if no communication between the course and the LMS ever occurred.
I have been working with our LMS vendor and they have indicated that Adobe Presenter is what they call a "Noncomforming AICC/SCORM course". They've asked us to check if Presenter completes the course from a putparam (AICC) or LMSSetValue/Commit(SCORM) call instead of exitau (AICC) or LMSFinish (SCORM). The default behavior in our LMS is not to allow nonconforming courses to mark complete.
They did provide the following code for us, but it did not resolve the issue.
--------------------------------------------
AICC_Catcher.prototype.allowNonConformingCoursesToMarkComplete = function(courseCreator)
{
var regexpstr = "Breeze Presenter";
if (regexpstr.length > 0 ) {
courseCreator = courseCreator || "";
if (courseCreator.length > 0) {
re = new RegExp(regexpstr,"i"); // The course creator match is case insensitive.
return courseCreator.search(re) != -1;
}
}
return false;
}
--------------------------------------------
Has anyone else experienced this problem with their LMS and Presenter? Does anyone have any suggestions on how I can help our vendor resolve this issue? We really like Presenter and would like to use it.
Thanks!
