Created
January 12, 2012 08:23
-
-
Save pipwerks/1599399 to your computer and use it in GitHub Desktop.
Captivate SCORM 2004 Output, removed <table> generated by JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Copyright [2008] Adobe Systems Incorporated. All rights reserved --> | |
<!-- saved from url=(0013)about:internet --> | |
<!DOCTYPE HTML> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title></title> | |
<script src="standard.js"></script> | |
<script src="SCORM_support/scorm_support.js"></script> | |
<script src="captivate.js"></script> | |
<style> | |
body { background: #f5f4f1; text-align: center; } | |
</style> | |
</head> | |
<body> | |
<div id="CaptivateContent"> </div> | |
<layer id="NS_dynamic" name="NS_dynamic"> | |
<noscript> | |
This course requires JavaScript to be enabled in your browser. Please enable JavaScript, then relaunch the course. | |
</noscript> | |
</layer> | |
<script> | |
var timeCurrent_int = new Date().getTime(); | |
var timeLimit_int = new Date().getTime() + (intIntervalSecs * 1000); | |
// This simply loops for a set period of time, waiting for the API to | |
// load and/or be found. A better solution would be to use setInterval | |
// and on the timeout, redirect or load the resulting Captivate file. | |
while((g_objAPI == null) && timeCurrent_int < timeLimit_int) | |
{ | |
g_objAPI = getAPI(g_intAPIOrder); | |
timeCurrent_int = new Date().getTime(); | |
} | |
if(g_objAPI != null) | |
{ | |
strURLParams = "?SCORM_API=" + g_zAPIVersion + "&SCORM_TYPE=" + g_intAPIType; | |
} | |
var so = new SWFObject(strURLFile + strURLParams, "Captivate", "641", "512", "10", "#CCCCCC"); | |
so.addParam("quality", "high"); | |
so.addParam("name", "Captivate"); | |
so.addParam("id", "Captivate"); | |
so.addParam("wmode", "window"); | |
so.addParam("bgcolor","#f5f4f1"); | |
so.addParam("menu", "false"); | |
so.addVariable("variable1", "value1"); | |
so.setAttribute("redirectUrl", "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"); | |
so.write("CaptivateContent"); | |
document.getElementById('Captivate').focus(); | |
document.Captivate.focus(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment