scorm2004

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

Creating SCORM content on the fly

我与影子孤独终老i 提交于 2019-12-11 18:09:27
问题 I wish to create SCORM packages on the fly i.e. programmatically in ASP.NET so as to run em in some SCORM compliant player on my web, dynamically. I am new to SCORM and have googled about it. What EXACTLY should be inside the SCORM package? I know i'll have to zip the files Im thinking about using System.IO.Packaging namespace classes or maybe someother external library for zipping files. What exactly should inside be in the SCORM package so as to make it SCORM 2.0 complaint and run it in

How to Calculate Progress of SCORM content?

回眸只為那壹抹淺笑 提交于 2019-12-10 11:36:07
问题 I'm trying to get a score, and progress from SCORM content (2004 Edition).So far I was able to save CMI values to my database using custom written LMS API. cmi.score.raw--->>0 cmi.score.max--->>15 cmi.score.min--->>0 cmi.score.scaled--->>0 I need to know how to calculate the progress of the student, score and grade from above values. Is there a any specific way or function for calaluclate progress? Or am I missing some value from SCORM? 回答1: Generally you would not calculate the score, that

SCORM package is not communicating with LMS

拈花ヽ惹草 提交于 2019-12-08 07:10:34
问题 Even after Initialize, SCORM package is not communicating with the LMS- Throwing error - No SCORM implementation found. My Folder structure- -index.php -player.php -course/SCORM-course (directory) -wrap.js -SCORM_2004_APIWrapper.js All code - My index.php code - http://pastebin.com/e8fcvxep My Player.php code - http://pastebin.com/R0zRaVXJ My wrap.js code - http://pastebin.com/Lte4eTKu My SCORM_2004_APIWrapper.js code - http://pastebin.com/kdQ0JR04 I searched and tried everything that I can

How to Calculate Progress of SCORM content?

∥☆過路亽.° 提交于 2019-12-06 14:54:15
I'm trying to get a score, and progress from SCORM content (2004 Edition).So far I was able to save CMI values to my database using custom written LMS API. cmi.score.raw--->>0 cmi.score.max--->>15 cmi.score.min--->>0 cmi.score.scaled--->>0 I need to know how to calculate the progress of the student, score and grade from above values. Is there a any specific way or function for calaluclate progress? Or am I missing some value from SCORM? Generally you would not calculate the score, that is the value that you've shown-- raw and scaled , and is set by the SCO. For progress, 2004 includes the cmi

Cannot retrieve previously saved data from LMS - SCORM 2004

做~自己de王妃 提交于 2019-11-29 16:43:47
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 these changes: API_1484_11.Commit(''); // true Request/Response: When I leave and reenter the activity