Forum Discussion
"Saved Info" in Fill in the Blank Text Box
I have a course published in Storyline with fill in the blank text boxes where they need to do some math and then put the correct answer in and submit the question. However, if they've already done this CBT before and are retaking the course, it saves the correct answer in as "Saved Info" when they select the box from the previous time they took it. See the attached picture.
Some additional background, we are using Workday LMS. I asked some IT people here and they think it's a browser issue with an AutoComplete function that would have to be turned off on a user-by-user basis or company-wide. (which is not realistic).
My question is, is there a way to fix this on the Articulate end maybe in the publishing process.
5 Replies
- ThomasUmphresCommunity Member
- ThomasUmphresCommunity Member
Posted the photo here so you don't need to download it.
Hello ThomasUmphres,
Thanks for reaching out!
The "Saved info" box in your screenshot is a browser feature. You cannot change or modify the behavior within Storyline 360, and you can only turn this feature off through your browser's settings. If you're using Google Chrome, here's a forum that discusses how to do so. You can contact your IT team to see if this change can be pushed to all machines through group policies.
- NedimCommunity Member
Does this happen in all browsers, or is it specific to one? Try executing this JavaScript when the timeline starts on this slide:
var inputs = document.querySelectorAll('.acc-textinput'); inputs.forEach(function(input) { input.setAttribute('autocomplete', 'off'); input.setAttribute('autocorrect', 'off'); input.setAttribute('spellcheck', 'false'); });
- ThomasUmphresCommunity Member
I've just tested it on Edge.
I'll have to try that script if our IT people say there's no way to fix it on their end. But it will be a lot of slides unfortunately. Thanks.