Forum Discussion
Suspend Continue Close Buttons at Top of Module in LMS
I am developing modules in RISE using SCORM 2004, 4th edition. However, when I upload the zip file into the LMS and launch, I now have 3 buttons at the top that were not there when I used SCORM 1.2. Top right corner now has Suspend Continue and Close. Can someone tell me why this is happening and how can I get rid of them?
Hi there! Since Rise 360 courses don't include those buttons in the output, I think they're specific to your LMS. They might appear when your LMS sees that the SCORM standard is 2004, 4th edition.
What LMS are you using? Does their support have anything to offer? Feel free to share any updates here!
- ManpreetVerma-bCommunity Member
Any update on this anyone? I am facing same issue...
- hazelBStaff
Hi Manpreet! Sorry to hear you are facing the same issue! Rise output does not have Suspend, Continue, and Close buttons. It looks like those are specific to your LMS. Best to contact them for LMS-specific issues.
- ManpreetVerma-bCommunity Member
and it only comes with SCORM2004...
- JosephMacriCommunity Member
We are transition to Success Factors Learning LMS and I experienced the same issue when publishing as SCORM 2004 4th edition. Here’s a KBA that talks about how to remove the navigation buttons from the frameset/wrapper
https://userapps.support.sap.com/sap/support/knowledge/en/2188058
- BrianCarrell-b4Community Member
I hope this helps someone out... When publishing from Rise, I found that a line of code is not included in the imsmanifest file that is included in the published file from Storyline. If you add the lines of code described in the KBA above to "hide" the buttons, you also need to include this line (for Rise only):
Place immediately BELOW the line xmlns:imsss="http...
xmlns:adlnav="http://www.adlnet.org/xsd/adlnav_v1p3"
Turns out this line of code defines the extra lines added, and when it isn't included, SuccessFactors doesn't understand them.
- CarlaRavazzzanoCommunity Member
I added the extra line xmlns:adlnav="http://www.adlnet.org/xsd/adlnav_v1p3" in addition to the coding that SAP mentions in their KBA but I still get a failed error when I upload it to Success Factor LMS.
- RyanWiegel-9970Community Member
Hi Carla,
I had to also add a line to in the schema locations list in addition to the XMLNS above for http://www.adlnet.org/xsd/adlnav_v1p3 adlnav_v1p3.xsd
Example:
xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p1 imscp_v1p1.xsd
http://www.adlnet.org/xsd/adlcp_v1p3 adlcp_v1p3.xsd
http://www.adlnet.org/xsd/adlseq_v1p3 adlseq_v1p3.xsd
http://www.adlnet.org/xsd/adlnav_v1p3 adlnav_v1p3.xsd
http://www.imsglobal.org/xsd/imsss imsss_v1p0.xsd">