Forum Discussion
AdamTrosper
8 years agoCommunity Member
lmsAPI Functionality in HTML5 Output
Hey all,
I've been searching through the forums and haven't been able to find anything solid. I'm using Storyline 360, outputting to both HTML5 and Flash to cover my bases, since the audience doe...
BruceRoberts
7 years agoCommunity Member
Has anyone got any of this working in Articulate Online?
I'm particularly interested in getting the student first name: lmsAPI.GetStudentName.
Apparently Articulate "...don't provide technical support for the Articulate Online API..."
- ChristophKri7627 years agoCommunity Member
Hi Bruce
For me that works ("studentname" is the variable set in SL360):
var player = GetPlayer();
var str = GetStudentName();
var partsOfStr = str.split(',');
player.SetVar("studentname",partsOfStr[0]);