Forum Discussion
Storyline 360 – Chinese interaction responses appear as underscores in SCORM 2004 reports
SujaSudherman that's an interesting one.
I can see what is the root of the issue. The SCORM JavaScript is taking the string containing Chinese characters, but it is processed before being sent to the LMS to remove non-ASCII characters.
I think one thing you can try is to change a JavaScript flag in the SCORM file. I believe this will allow the characters through.
Open up your SLIDE MASTER and add the following trigger to the main master template (parent to the question template): "When timeline starts on this slide Execute JavaScript"
And then add the following JavaScript
if(USE_LEGACY_IDENTIFIERS_FOR_2004) USE_LEGACY_IDENTIFIERS_FOR_2004 = false;
This should switch off the flag that is forcing SCORM 2004 to use a different method to create unique IDs.
Note: If you have more than one SLIDE MASTER parent to your question templates, ensure the logic is added to all SLIDE MASTERs that the question templates inherit from.
Let me know how you go.