Copy link to clipboard
Copied
I am looking to get some assitance from Adobe to determine if and how we can use API calls from within Captivate to access information from our Cornerstone LMS and feed the information into a course so that we can use it to determine things like the learner's start date so we can know automatically whether or not to show a pretest or not.
Copy link to clipboard
Copied
Not sure what API you are referring to, but there really isn't anything in the SCORM data model that would give you that information. You would be able to tell if the user has accessed the lesson before though. You could execute this Javascript:
var userEntry = SCORM_CallLMSGetValue("cmi.core.entry")
if ( userEntry == "ab-initio")
{
//show pretest
}
else
{
//user has been here before
}