Forum Discussion
AstutisArtic013
6 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
5 years agoCommunity 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
5 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");
}
Related Content
- 5 months ago
- 2 years ago