HTML5 Captivate course in Taleo (learn.com) not registering as complete
Howdy folks,
We're working on posting some training modules in html5 / AICC format on our learn.com installation and we've run into a bit of a snag.
We've been posting training in SWF format until recently. We're making the switch to HTML5 and the javascript we use for the last slide to register as complete is apparently not being read when we publish in HTML5 becuase our courses never get registered as complete in the LMS.
We currently configure the last slide as such:
- Navigate to the “Now you know how to” slide.
- Go to Properties.
- Select the Actions button.
- Ensure Execute JavaScript is selected in the On Enter field.
- Click on the Script_Window button to display the JavaScript window.
- Ensure the following information appears in this window.
//get LMS API
var lmsAPI = parent;
//set score; the first number is the score
lmsAPI.SetScore(100, 100, 0);
//set status; possible values: "completed","incomplete", "failed", "passed"
SetStatus("completed");
Does this need to be tweaked to work in the new HTML5 format?
