Forum Discussion
Review SCORM publish settings after published
- 3 months ago
Hi Caitlin,
Here's how you can check what publishing settings were used to publish an existing Storyline 360 course.
- In the published output, open the html5 folder; open the data folder; open the js folder.
- Open the data.js file in a text editor, such as Notepad++.
- Search for threshold.
In the line of code where "threshold" appears, you'll see the tracking type, passing score, slide view threshold, pass status, and fail status.
Type = Tracking Method
- If type = view, the course is tracked by the number of slides viewed.
- If type = quiz, the course is tracked by a quiz result slide.
- If type = action, the course is tracked by a completion trigger.
Tracking Details
- The passPercent value only applies if the type = quiz.This is the score required to pass the quiz.
- The viewThreshold value only applies if the type = view. This is the number of slides the learner must view to complete the course.
- Tracking Details
- The passStatus and failStatus values tell you which reporting options the author selected.
Let me know if you have any questions!
thanks. that's what I was hoping to get details on. I'm not very familiar with the contents of export packages and hoped someone in the community could shed light on it.
Hi Caitlin,
Here's how you can check what publishing settings were used to publish an existing Storyline 360 course.
- In the published output, open the html5 folder; open the data folder; open the js folder.
- Open the data.js file in a text editor, such as Notepad++.
- Search for threshold.
In the line of code where "threshold" appears, you'll see the tracking type, passing score, slide view threshold, pass status, and fail status.
Type = Tracking Method
- If type = view, the course is tracked by the number of slides viewed.
- If type = quiz, the course is tracked by a quiz result slide.
- If type = action, the course is tracked by a completion trigger.
Tracking Details
- The passPercent value only applies if the type = quiz.This is the score required to pass the quiz.
- The viewThreshold value only applies if the type = view. This is the number of slides the learner must view to complete the course.
- Tracking Details
- The passStatus and failStatus values tell you which reporting options the author selected.
Let me know if you have any questions!
- Caitlin3 months agoCommunity Member
thank you!