scorm

SCORM lib for php [closed]

十年热恋 提交于 2021-02-07 06:34:07
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . Improve this question we have developed e-learning web site for one of our customer. recently he asked he need SCORM feed. i dornt know whether my system is compatible with scrom. do any body know any opensource php tool or lib to generate scrom from existing data. thanks 回答1: The

SCORM lib for php [closed]

放肆的年华 提交于 2021-02-07 06:33:47
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . Improve this question we have developed e-learning web site for one of our customer. recently he asked he need SCORM feed. i dornt know whether my system is compatible with scrom. do any body know any opensource php tool or lib to generate scrom from existing data. thanks 回答1: The

SCORM 1.2 API Examples/Tutorials

僤鯓⒐⒋嵵緔 提交于 2020-06-09 11:32:07
问题 I have spent a considerable amount of time searching for SCORM 1.2 API tutorials/examples, which turns out to be quite a difficult task. The only sample I have found is this: http://www.vsscorm.net/2009/05/30/ground-rules/ It is a solid tutorial but I would like to find some more information from other sources. All suggestions are appreciated. 回答1: Like Andrew mentioned it is really hard to fully implement SCORM yourself. I believe Moodle doesn't even support Scorm 2004. AICC is extremely

Media queries within an iframe, or SCORM without frames

半腔热情 提交于 2020-03-25 04:15:10
问题 I have a responsively designed (using media queries) web based training (WBT) lesson. By default, this WBT does not use any frames, for accessibility concerns and etc. However, when deployed from a SCORM LMS, it uses a file which acts as a frameset, for the SCORM communication. Like this: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Title of Course Here</title> <script src="../common/scripts/scorm.js"></script> <style> html, body {margin:0; overflow:hidden; padding:0;

Integration of SCORM with PHP/Yii [closed]

倖福魔咒の 提交于 2020-01-14 02:37:20
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 6 years ago . Practically I am new to SCORM implementation in PHP. Theoretically I covered these areas before asking a question here - Already looked at Wiki SCORM that what does it means theoretically.(kinda standard to be followed for delivering content). Read about the moodle and SCORM(but may be I need to

SCORM Authoring Tools

不羁的心 提交于 2020-01-04 04:54:41
问题 I work for a company that converts operation and maintenance manuals and other information and media we find into online courses. Currently, we use Microsoft Word to create the courses because often times, there is a lot of information and it doesn't fit in PowerPoint slides so we need scrollbars to show the information. I have been searching for a new authoring tool that is SCORM compliant. I haven't been very successful in my search. Programs like Adobe Captivate will take a lot of time for

Is implementing LMS Scorm Tracking without an authoring package feasible for a beginner?

左心房为你撑大大i 提交于 2019-12-22 06:36:03
问题 Prior to building an eLearning solution, I am determining whether to use an authoring package such as Captivate or Storyline or to create HTML pages which utilize JS calls for tracking. If I avoid using an authoring tool, I get flexibility in terms of the content and reuse of existing assets. For example, Storyline is outputting SWF files which I cannot pass around my team like a simple HTML page for review. However, I am new to SCORM.. and I am wondering is it feasible to get up to speed

Looking for SCORM compliant course example in pure HTML with mp3 without flash [closed]

帅比萌擦擦* 提交于 2019-12-20 07:48:02
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I am looking for any example of HTML SCORM compliant course with mp3 without flash player. I need to find scorm compliant course which plays mp3 using HTML5 audio. Related question: How to enable mp3 content type in SAP Authoring Tool In a case that post on SAP portal disaparred here is a copy of it: I think I

Setting SCORM course progress

☆樱花仙子☆ 提交于 2019-12-19 10:58:09
问题 I'm just wondering, is there anyway you can set the course progress in a SCORM file during runtime? Which method should I check? 回答1: Progress would be defined based on the learning requirement by the SCO developer. In general, number of objectives (cmi.objectives) met or number of pages visited by the learner. To store the progress, if SCORM 2004 look for cmi.completion_threshold and cmi.progress_measure. If SCORM 1.2 we can use the generic element cmi.suspend_data. To display the progress

Cannot retrieve previously saved data from LMS - SCORM 2004

梦想与她 提交于 2019-12-18 09:36:41
问题 I'm trying to retrieve previously saved data from Moodle LMS but seems like something is not working. This is what I'm doing: I load the SCORM (v2004) package into Moodle and perform some actions (like save navigation data or set completion status): // Completion status always "unknown" at first time so I try to change it to incomplete: API_1484_11.SetValue('cmi.completion_status', 'incomplete'); // "true" ... API_1484_11.SetValue('cmi.location', '{"page":2}'); // "true" Then later on commit