Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.
import pipwerks.SCORM;
var scorm:SCORM = new SCORM();
var lmsConnected:Boolean = scorm.connect();
if(lmsConnected){
writeFeedback("LMS is connected!");
var stuname:String = scorm.get("cmi.core.student_name");
writeFeedback("Student name: " +stuname);
scorm.disconnect();
} else {
writeFeedback("Could not connect to LMS.");
}
function writeFeedback(msg:String){
feedback.text += msg + "\n";
}
stop();
1 to 4 of 4