Scorm 1.3 is not supported in moodle mobile app

Scorm 1.3 is not supported in moodle mobile app

by Swanand Taware -
Number of replies: 4

Hi All,

I am using moodle mobile application and it only supports Scorm 1.2, For other scorm versions, it display button "Open in browser".

I have made changes in mm.bundle.js file:

From this:

self.isScormValidVersion = function(scorm) {

            return scorm.version == 'SCORM_1.2';

    };

To this:


self.isScormValidVersion = function(scorm) {

            return scorm.version == 'SCORM_1.2' || scorm.version == 'SCORM_1.3';

    };

and it hide the button "Open in browser" and display Enter button to open scorm. After hit an enter button it shows an blank screen and nothing happen.

Please help.


Regards,

Swanand

Average of ratings: -
In reply to Swanand Taware

Re: Scorm 1.3 is not supported in moodle mobile app

by Dan Marsden -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers Picture of Plugins guardians Picture of Testers Picture of Translators

SCORM 1.3 is not supported in Moodle - not just the mobile app.

More information here:
https://docs.moodle.org/en/SCORM_FAQ#Supported_Versions

In reply to Dan Marsden

Re: Scorm 1.3 is not supported in moodle mobile app

by Marcus Green -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers
In reply to Marcus Green

Re: Scorm 1.3 is not supported in moodle mobile app

by Dan Marsden -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers Picture of Plugins guardians Picture of Testers Picture of Translators

haha - don't make it worse... smile

SCORM 2004 was called "1.3" before it's official release but it's official name is now SCORM 2004.

Moodle doesn't support SCORM 2004 (or 1.3) whatever you would like to call it.