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
4 years agoCommunity Member
Okay the following is the exact code I am using. I can only confirm it works in Storyline360 for HTML5 export.
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");
}
Again this code goes on every slide that has an input field. The Trigger: Execute JavaScript When timeline starts on this slide.