我正在创建一个scorm包(2004年第3版),里面有几个页面。我正在创建一个主页,让您选择要导航到的项目。然而,我遇到了这样一个问题:没有任何形式的javascript导航可以更改为任何页面。
使用来自scorm站点的this package example (manifest only),我做了一些测试。根据清单选择模式被启用。
<imsss:controlMode choice="true" flow="true"/>但是,每当我转到礼仪页面,然后获取API对象并尝试任何形式的导航时,它都会失败。
API.GetValue("adl.nav.request_valid.choice.{target=playing_item}");
API.SetValue("adl.nav.request", "{target=playing_item}choice");设置adl.nav.request后,Terminate("")调用失败。诊断结果为:
"Failure calling the Terminate remote callback: the server replied with HTTP Status <div class="notifyproblem">Target Activity does not exist or is unavailable</div>true"发布于 2014-03-11 06:00:58
选择模式已启用,但此规则可能会覆盖它。
<!--
'Disabled' will cause the SCO to be visible in the course tree, but not accessible via choice or flow.
-->
<imsss:ruleAction action="disabled"/>为什么不先用这个简单的高尔夫例子试试这个特性呢?
http://scorm.com/wp-content/assets/golf_examples/PIFS/RuntimeMinimumCalls_SCORM20043rdEdition.zip
https://stackoverflow.com/questions/22303371
复制相似问题