Index: lams_central/src/flash/org/lamsfoundation/lams/learner/Application.as =================================================================== diff -u -r85b38c943d526770dc3a25280917f77da297a202 -r68edbaed79397ea3bd753c12b14f7667a2b4da1c --- lams_central/src/flash/org/lamsfoundation/lams/learner/Application.as (.../Application.as) (revision 85b38c943d526770dc3a25280917f77da297a202) +++ lams_central/src/flash/org/lamsfoundation/lams/learner/Application.as (.../Application.as) (revision 68edbaed79397ea3bd753c12b14f7667a2b4da1c) @@ -244,13 +244,13 @@ * @param current */ - public function refreshProgress(attempted:String, completed:String, current:String, uniqueID:String){ + public function refreshProgress(attempted:String, completed:String, current:String, lessonID:String){ Debugger.log('attempted: ' + attempted,Debugger.CRITICAL,'refreshProgress','Application'); Debugger.log('completed: ' + completed,Debugger.CRITICAL,'refreshProgress','Application'); Debugger.log('current: ' + current,Debugger.CRITICAL,'refreshProgress','Application'); - Debugger.log('_root ID: ' + _root.uniqueID + ' passed in ID: ' + uniqueID,Debugger.CRITICAL,'refreshProgress','Application'); + Debugger.log('_root lesson ID: ' + _root.lessonID + ' passed in lesson ID: ' + lessonID,Debugger.CRITICAL,'refreshProgress','Application'); - if(_root.uniqueID == uniqueID){ + if(_root.lessonID == lessonID){ var attemptedArray:Array = attempted.split("_"); var completedArray:Array = completed.split("_");