Tracking of progress

I got it to work on Cornerstone:I've added an External HTML object to the first page of the course (Object type: Header Scripting) with the following code:var i;var objValue = "";var objId = "";//loop through the objectives and initialize them if they were not previously setfor(i=0; i < 3; i++){ objValue = LMSGetValue("cmi.objectives." + i + ".id"); objId = "Lesson " + (i+1); if(objValue == "") //this means the objective has not been previously initialized { LMSSetValue("cmi.o bjectives." + i + ".id", objId ); LMSSetValue("cmi.o bjectives." + i + ".status", "n"); LMSSetValue("cmi.o bjectives." + i + ".score", ""); }}Then I added an External HTML Object to the last page of each chapter with this script for chapter 1:LMSSetValue("cmi.objectives.0.id", "Lesson 1");LMSSetValue("cmi.objectives.0.status", "completed");Whereas for chapter 2 it is:LMSSetValue("cmi.objectives.1.id", "Lesson 2");LMSSetValue("cmi.objectives.1.status", "completed");Etc, etc.Hope this might help.jz

Discussions have been disabled for this post