简体   繁体   English

SCORM Adob​​e Presenter 7内容未在LMS中调用doInitialize

[英]SCORM Adobe Presenter 7 Content did not call doInitialize in LMS

I am developing an ASP.NET based LMS that uses Adobe Presenter 7 SCORM content. 我正在开发使用Adobe Presenter 7 SCORM内容的基于ASP.NET的LMS。 According to SCORM 2004 RTE documentation, the SCO will automatically search for the SCORM API and initialize communication. 根据SCORM 2004 RTE文档,SCO将自动搜索SCORM API并初始化通信。 I've included the SCORM content and the API Wrapper in one page. 我在一页中包含了SCORM内容和API包装器。 When I tried to run the code, the SCO really did find the API, but it did not call for doInitialize() function in the API. 当我尝试运行代码时,SCO确实找到了API,但没有在API中调用doInitialize()函数。 What did I do wrong? 我做错了什么? I really appreciate your responses. 非常感谢您的回复。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <iframe src="JS/SCORM_2004_APIWrapper.js" name="API_1484_11" width="0" height="0"></iframe>
        <iframe src="SCORM2004Sample/SCORM.htm" width="800" height="600"></iframe>
    </div>
    </form>
</body>
</html>

Your SCORM 2004 API must have an Initialize() method (not doInitialize) to initiate the communication. 您的SCORM 2004 API必须具有Initialize()方法(而非doInitialize)来启动通信。

FX 外汇

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM