Forum Discussion
clee1
2 days agoCommunity Member
LMS not displaying Quiz Score as Game Score
I’m using JavaScript to send the game score to our LMS, but I need the raw score (e.g., 19,000 points) to display instead of just ‘Complete’ or a percentage. We’re incentivizing high scores for prize...
MaheshMahajan
2 days agoCommunity Member
Hi Clee1,
Please use the code below to submit the score to the LMS. I hope this works with your LMS.
var player = GetPlayer();
var score = player.GetVar("score");
function findLMSAPI(win) {
if (win.hasOwnProperty("GetStudentID")) return win;
else if (win.parent == win) return null;
else return findLMSAPI(win.parent);
}
//get LMS API
var lmsAPI = findLMSAPI(this);
lmsAPI.SetScore(score,21250, 0);
clee1
2 days agoCommunity Member
Thank you. I tried this javascript and it gave me a percentage and the status as complete still. I'm thinking it is a Paycom Learning limitation.
Related Content
- 6 months ago
- 9 months ago