Forum Discussion
AstutisArtic013
5 years agoCommunity Member
Text entry bug in latest update
Hi all.
I discovered a bug in Storyline 360 today, which has been reported. If you have a text entry field it will stay 'on top' of any layers you have on that slide (including master slides).
F...
DanielHolland
Community Member
The JavaScript needs to be placed on any slide with a text input field. You just use an executed JavaScript trigger when timeline starts and copy and paste the JavaScript. Hope this helps
MarkAnthonyChes
4 years agoCommunity Member
Thanks, Daniel!
Could you please doublecheck the code...it's not working for me, sorry...
var els = document.getElementsByTagName('input');
for (var i=0; i < els.length; i++) {
els[i].value='';
els[i].setAttribute("onfocus", "this.value=''");
els[i].setAttribute("autocomplete", "off");
}