Copy link to clipboard
Copied
We are looking for help from Adobe to build calls that will allow us to use API calls from Captivate to communicate and get information from Conerstone (our LMS) that we could use in the courses such as the learner start date. We understand that this capability is currently not available in Captivate. We are looking to build an add on. Can someone contact me regarding if this is possible and we can find out the pricing estimate?
Thanks!
Copy link to clipboard
Copied
You can make SCORM calls from CP with JavaScript. There really isn't anything in the SCORM data model that would give you a start date. 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
}
Find more inspiration, events, and resources on the new Adobe Community
Explore Now