Forums/SCORM Engine/LMS

Bookmarking using several SWF's

Thomas Barritt
posted this on March 15, 2010 01:09 pm

Hi,

I was wondering how complicated it is to bookmark using seveal SWF's that make up a course?

Would it look something like:

 

Write:

<script language="javascript">

LMSSetValue("cmi.core.lesson_location", page1.swf );
LMSFinish();

</script>

 

Read:

<script language="javascript">

LMSInitialize();
var currentScoPage = LMSGetValue("cmi.core.lesson_location");
if (currentScoPage != "") {
   self.location = currentScoPage;
}else{
    currentScoPage = page1.swf
}

</script>

 

Any assistance would be greatly appreciated :)