Forum Discussion
BenChamish
3 years agoCommunity Member
UserName from cornersone LMS
Anyone,
I am creating a simple certificate in Storyline 360 and plan on embedding it into my RISE 360 course or users to print. I'm coming from Lectora. I'd like to have the users name added with...
Jürgen_Schoene_
3 years agoCommunity Member
try
function findLMSAPI(win) {
if (win.hasOwnProperty("GetStudentID")) return win;
else if (win.parent == win) return null;
else return findLMSAPI(win.parent);
}
let player = GetPlayer()
let lmsAPI = findLMSAPI(this);
let myName = lmsAPI.GetStudentName();
player.SetVar("StudentName", myName);Related Content
- 10 months ago