Forum Discussion
Variable Reporting to LMS as Score
Hi Timothy,
Here is some code I use to move reported variables around in my LMS reporting, esentially replacing one with another. Using this code, the LMS will report the question ID under the Learning Objective column, and it will report the question text description under the ID column.
if (typeof GetPlayer == "function") {
strLearningObjectiveID = strID.replace(/[ \t\r\n\v\f]/g, "_");
strID = strDescription.replace(/[ \t\r\n\v\f]/g, "_");
}
I put this in my scormdriver.js file after publishing from Storyline and before zipping and uploading to the LMS.
Perhaps you could substitute your "v_FinalScoreValue" for one of the currently reported variables.
I have a walkthrough about this on my website: Question Text Reporting in the ADP LMS (memorablelearning.com)