Forum Discussion
Using imsmanifest xml to hide navigation buttons
Hi All, look into the latest post on this thread;
https://community.articulate.com/discussions/articulate-presenter/scorm-wrapper
It appears that Articulate no longer includes the nav definitions in the manifest file for Rise.
With that missing, the additional code that we add after the </Title> and before the </Item> area to hide the nav buttons gives an error by the LMS trying to create the package from the manifest file. I have not yet tested with an export from SL or Studio/Presenter as of yet.
Missing xmlns definition:
xmlns:adlnav="http://www.adlnet.org/xsd/adlnav_v1p3"
Missing schema location:
http://www.adlnet.org/xsd/adlnav_v1p3 adlnav_v1p3.xsd
This is a full example of the xmlns header that I had on a prior file and found a copy/paste worked well for me from it to my new manifest file.
xmlns="http://www.imsglobal.org/xsd/imscp_v1p1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_v1p3"
xmlns:adlseq="http://www.adlnet.org/xsd/adlseq_v1p3"
xmlns:adlnav="http://www.adlnet.org/xsd/adlnav_v1p3"
xmlns:imsss="http://www.imsglobal.org/xsd/imsss"
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">