Forum Discussion
Everything we know about Cornerstone on Demand and Storyline!
I thought I would start a thread about Cornerstone on Demand so there's a central place for people to read and add to. There seems to be a dearth of information about how CSOD and Storyline interact with each other as well as the unresolved issues surrounding it. I've spent many hours scouring the web and speaking with Cornerstone trying to find a solution. Hopefully this thread will serve as a resource for others going forward.
On a side note, I love Articulate Storyline. I started with Adobe Captivate with limited success. It was a very steep learning curve, but I was able to get some basic functionality out of it. I tested out Storyline with it's 30 day trial, and I will say that time-to-effectiveness was drastically reduced. It really IS like using powerpoint. Granted there is less complex functionality and interactions available than Captivate, but so far it's given me everything I've needed to use. The benefit is that the learning curve is much less steep too. Think of it as the difference between iMovie and Final Cut Pro. The latter can do some crazy effects, but the former gives you 90% of what you need and can get you comfortable in 1/4 of the time.
It's nice to have a properly-working content creation tool when you're in an LMS like Cornerstone. I have enough trouble in CSOD as it is.
So some of the nuggets of wisdom that I've found are :
- Cornerstone does not track SCORM 1.2 content properly. You cannot pull a lot of the reports if they are not in SCORM 2004 format. You don't have the option to select that course in the reports.
- If you export into SCORM 2004, there will be an extra section on the left with text links to the module. This takes up 30% of the screen, and on smaller laptop screens may crowd out the module window. Cornerstone says this is a Storyline exporting settings issue. I couldn't find any settings that shows/hides that section. The workaround is to resize the module to the screen, which doesn't get rid of the section, but at least fits the module.
- When reporting, you can get the completion status for a course based on quiz result or last slide viewed. You can also get a final grade for course. Storyline passes the results information for each question (including short answer) but you cannot pull a list of the answers for an individual. Therefore, it may not be advisable to administer any testing where you'll need to review individual answers
- You can get a list of aggregate answers for a module. e.g. I can see how 100 employees answered this multiple choice question. This is helpful to determine if learners are absorbing the course information correctly.
- Web objects (such as websites, or links to sharepoint documents) work in modules if your IT has added csod.com to the trusted sites
- Popup windows that open up the articulate module in CSOD will work if you add csod.com to the allowed list for popup blockers. Your IT dept can also add this to everyone's computer. Otherwise when learners click the "launch" button, the module does not show up.
I'll post more as I think or find them, but feel free to add to this list!
912 Replies
- LeighSCommunity Member
My learners use the Cornerstone mobile app on iPhones and iPads. When they try to open a Storyline 360 course, a blank window pops up and it looks like the course is trying to load, but it never does. If they close the window the course will play as normal, but it's a super confusing UX. Does anyone know of a fix for this? Screenshot attached
Hi Leigh,
Any way to not use the Cornerstone mobile app? Storyline content can launch directly in Safari and it'll show the responsive player by default. If it's launching in an external app, that's where things seem to be getting tripped up, and I'd have to defer to Cornerstone's support to help!
- ColleenLileyCommunity Member
We are also having this issue in Cornerstone Mobile. Its important to note that courses created in Storyline 360 v3.10 don't do this, every version number since does. Is there a way to isolate the change that caused this behavior?
Hi there, Colleen. It sounds like you're having some trouble in the Cornerstone mobile app. Are you able to launch your courses directly in a supported mobile browser (Safari or Google Chrome)?
- GemmaWellsCommunity Member
Hello Cornerstone users I need some advice. We currently use Java script on the last slide of our eLearns to basically tell Cornerstone the module is complete, We have this as a trigger when the last slide starts and when the user presses the exit button. This was set up prior to me starting - its not something I have ever used. I was wondering if this is needed? We publish modules to SCORM2004 with passed/incomplete set. Does anyone else use Java script to get it to show as complete?
- Will_FindlayCommunity Member
It would be interesting to see what the javascript code is that accomplishes this. Would you mind posting it?
To answer your question though, no, it isn't needed. The method we use to accomplish essentially the same thing is outlined in the help article:
Using javascript might be less work though. (But then the trade-off is that it isn't supported by Articulate)
- GemmaWellsCommunity Member
The java script we use is
var lmsAPI = parent;
lmsAPI.SetScore(100, 100, 0);
SetStatus("completed")
- SteveFlowersCommunity Member
The JS is pretty straightforward. We've been using similar to the below for awhile. HTML5 references the lmsAPI differently than the Flash output. A conditional check to see if a function exists typically helps send the calls in the right direction.
var player=GetPlayer();
//status is pretty simple.
SetStatus("completed");//if you also want to set the score.
lmsAPI=parent;
var tPercent=player.GetVar("SLSCORE"); //grab a score variable from storylineif(lmsAPI.hasOwnProperty("SetScore")){
lmsAPI.SetScore(tPercent,100,0);
}else{
SetScore(tPercent,100,0);
}- Will_FindlayCommunity Member
Thanks Steve! Do you have the version of the code that accounts for HTML5 vs. Flash that you could share? :-)
- SteveFlowersCommunity Member
Yep. The code above accounts for the difference by checking to see if the lmsAPI is in the parent. If not, it just calls the function from the local scope. That's the difference between the way HTML5 seems to be configured.
- Will_FindlayCommunity Member
Ah, ok. I see it now at the if statement at the end:
if(lmsAPI.hasOwnProperty("SetScore")...
That's great! I can't really think of any drawbacks to using this method over the "Specific Slide" method. I'd imagine that something like this javascript code might be what is going on behind the scenes anyway.
- SteveFlowersCommunity Member
Yep. We're just hijacking what's already going on behind the scenes. This allows for more complex score calculations as well.
Someday... maybe we'll have a trigger specifically built to support this to avoid having to use JS:) - yoampiyoampiCommunity Member
Issue with rise: videos don't go full screen mode in Cornerstone
Hi community,
I have an issue with rise that is driving me mad and I need your support.
We created a Rise course with some blocks that are videos. When using the shared link, videos can play on full screen mode.
We exported the video in scorm 1.2 and tested in scorm cloud. It was able to play videos in full screen mode.
However, when I upload the same scorm in Cornerstone, videos can't go full screen. The button to enlarge is there, but when you click nothing happens. Video doesn't go full screen
Have you faced a similar issue? Any clue on how to overcome it?
Thanks a lot!!!
- Will_FindlayCommunity Member
I feel your pain on "full screen mode on embedded videos" not working in Cornerstone. I tried a bunch of ways to work around this and finally gave up. You can go to Suggestion City and vote up a suggestion I submitted here:
More info here:
- alejandroglezfCommunity Member
The issue with full screen also happens with some courses we create that
are not developed with Storyline that use FlowPlayer to handle videos. I
upvoted your suggestion, Will. I say it is somewhat old. I hope they take
it into account.
- mkudrnaCommunity Member
The full screen option seems to work for me in Google Chrome, but not in Internet Explorer.
- MarcusAlkemadeCommunity Member
Dear all,
Anybody here any experience with pulling participants name and date of completion from Cornerstone? I could use a little help.
I made a certificate slide on which the first and last name of the participant and also the date of completion should appear. I used a trigger to execute JavaScript when timeline starts, this is the JS:var lmsAPI = parent;
var name = lmsAPI.GetStudentName();
var nameArray = name.split(", ");
var firstName = nameArray[1];
var lastName = nameArray[0];
var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
var dateString=day + "/" + month + "/" + year
var player = GetPlayer();
player.SetVar('first_name',firstName);
player.SetVar('last_name',lastName);
player.SetVar("date_completion",dateString);
It works fine for me when I test it in ScormCloud. But my client tells me it doesn't work for him. They use Cornerstone. It instantly got me wondering about the difference between ScormCloud and Cornerstone.
My first question is: is the JavaScript I used correct for Cornerstone?My second question is: could the configuration of Cornerstone or safety measures on my clients side be a problem?
Thanks in advance!- jeremyusherCommunity Member
HI Marcus
Did you ever resolve this as I have the save issue trying to pull the learner name from cornerstone?
- AngieElliott-51Community Member
Hello, Marcus.
Did you ever get a response to this? I didn't see anything come through on the next page. I have a client using CSOD and I want to pull the preferred name, too.
Any help you can provide would be helpful!
Thank you,
Angie
hi @ beyondcontentco.com
- OwenHoltSuper Hero
Angie, are you trying to pull the learner's name from CSOD?
- AndreaGrandP964Community Member
Hello all,
Is anyone else having email hyperlink issues with CSOD? We publish SCORM 2004 3rd edition and recently some of our courses (not all) crash when a user clicks an email hyperlink. Compatibility mode is turned off in CSOD and on IE11.
Has anyone else had this problem? Any solutions?
Thanks!
Related Content
- 7 months ago
- 8 months ago
- 4 months ago
- 6 months ago