Prajwal
Prajwal

Reputation: 33

How to create a simple Scorm Player using HTML & JavaScript

I am new to SCORM & I am looking to create a simple SCORM player that just display the SCORM package content, no tracking n other things, only just play the content. I have searched everywhere on internet but still no luck! Also I don't want to use anything like scorm.com engine and any other paid service. Moodle & Scormpool also did't help much. I want a code that plays scorm packages on my browser whether in html, javascript or php.

Upvotes: 1

Views: 16536

Answers (3)

Mark
Mark

Reputation: 2549

So with no tracking and just "play the content" your essentially just launching a html file. Any SCORM CAM Package typically has a imsmanifest.xml. You'd need to be able to parse that, and then generate a one to many type Table Of Contents to present and play the content like you mention. You can perform that in any of the desired scripting languages you mention. Any open source project you find will most likely be very old or abandoned or have far too much dependancies to even bother with. You simply want to know how to parse XML, built a TOC view, and manipulate launching the content in a IFRAME, new Window, Popup Window or Tab.

Upvotes: 4

colonize
colonize

Reputation: 13

Possible duplicate: open source scorm player pure javascript and html?

Here is a simple runtime environment you can set in your machine with a webserver. http://www.vsscorm.net/run-time-environment-rte/run-time-environment-downloads/

It requires to create database with one table, but it is more less self-guided.

Upvotes: 0

Graeme Nicholls
Graeme Nicholls

Reputation: 1

You might like to look at Trident IDE it is a SCORM authoring tool. If you already have a HTML or html5 interaction and you need it to load as a SCORM package you need a well defined manifest file.

Upvotes: 0

Related Questions