Review 360 recalling text from a text entry

Jan 06, 2021

Hi. I have built a simulation in Storyline which is embedded into a rise course. The storyline file has some sections with a text entry field. The client has been reviewing the simulations and has noticed that Review 360 remembers what has been previously typed in the text entry field(see image from Review 360 attached). The client wants to make sure this wont happen with the learners when published. 

Is this caused by Rise 360 or Review 360 and is there a way I can stop it happening?

I'm on a tights deadline so would really appreciate some help!

Thanks in advance - Luke 

1 Reply
Katie Riggio

Happy first post, Luke!

Thanks for reaching out and including that helpful screenshot!

I can recreate the previously typed text in the dropdown menu experience in Rise 360, Review 360, and the hosted Storyline slide. This is controlled by the browser and can't be adjusted within our authoring tools.

However, here's a neat community trick from hero Matthew that may help!

Add this JavaScript code on your slide master and use the Execute Javascript when the timeline starts trigger:

for (var i=0; i < els.length; i++) {
 els[i].setAttribute("autocomplete", "off");
}