Captivate 4 not generating SCORM support files
October 07, 2010
Captivate | Elearning | SCORM | Troubleshooting

If you have a Captivate 4 file that refuses to generate any SCORM support files when publishing, check your Publish settings. Make sure that "Fullscreen" is not checked in the publishing settings. Then it will publish fine.


Since you are eliminating the Captivate generated code for maximizing the window, you may want to add that back in. To force the Captivate window to maximize to full-screen upon opening, add the following Dynamic Drive script to the head of your published HTML file:


Ads by Google

Posted by ellen at October 07, 2010 05:08 PM



<script language="JavaScript1.2">

/***********************************************
* Auto Maximize Window Script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for this script and 100's more.
***********************************************/

top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}

</script>


Ads by Google


Ads by Google

 RSS   |   Contact Me


Ads by Google