且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

动态创建SCORM内容

更新时间:2023-02-07 14:15:04

创建SCORM包至少需要两件事: -名为imsmanifest.xml的文件,其中包含软件包的描述.这应符合SCORM CAM规范.但是,如果您只打算在播放器中动态创建和运行此SCO包,则可以跳过此步骤. -一个JavaScript API,可发现您的SCORM播放器并至少调用其函数LMSInitialize,LMSCommit和LMSFinish.

You need at a minimum 2 things to create a SCORM package: - A file called imsmanifest.xml that contains the description of the package. This should conform to the SCORM CAM specifications. However, if you only intend to create and run this SCO package dynamically n your player, it may be possible to skip this. - A JavaScript API that discovers your SCORM player and calls its functions, LMSInitialize, LMSCommit and LMSFinish at least.

请记住,当前没有SCORM 2.0.只有1.2和2004版本.我强烈建议您从更简单,更广泛的SCORM 1.2开始.

Keep in mind that there is currently no SCORM 2.0. There's only 1.2 and 2004 versions. I strongly suggest that you start with SCORM 1.2 which is simpler and widespread.