Reputation: 39
I have a question in scorm,Actually now i have a scorm package created in lectora and its launching and working fine for me .But in the middle one alert is showing "Some persistent data was not stored" .When i googled it i got that its due to the exceeding of suspend_data reporting from the scorm package(4k for scorm 1.2 and 64 k for scorm 2004).
How can i crack the problem through my code or how can i set the maximum limit in my scorm adaptor because i cant change the package.
Hope you understand the problem very eagerly waiting for your reply
Thanking You
Arun KG
Upvotes: 3
Views: 1553
Reputation: 32520
I have seen solutions where developers have hijacked some of the other read/write CMI fields to store arbitrary data. For example, cmi.comments
gets you another 4K in SCORM 1.2. SCORM 2004 gives you quite a few more (cmi.interactions.n.description
, cmi.objectives.n.description
, ...).
Most of these alternative fields are not mandatory, so your target LMS may not support them.
Upvotes: 1