Captivate 5 has many bugs that have been complete showstoppers for my elearning projects. Among them, there is a problem with SCORM courses that get perpetually stuck on the gray "Loading..." screen. This is because "API.Initialize" is never called.
Thanks to the detective work of Bart Lewis, we have a partial fix.
- Publish the Captivate file as SCORM.
- Open the HTML wrapper file with the same name as your course.
- Find the following line of code:
strURLParams += (strURLParams==""?"?":"&") + "SCORM_API=" + g_zAPIVersion + "&SCORM_TYPE=" + g_intAPIType;
- Change that line of code to this:
strURLParams = "?SCORM_API=" + g_zAPIVersion + "&SCORM_TYPE=" + g_intAPIType;
- Save the HTML file and zip up all the files.
- Upload zip to LMS.
Ads by Google
Posted by ellen at October 07, 2010 04:16 PM