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
Yes, this should work...just change the text in quotes to what you need...now if you have more than one input this may not work and you may have to target a specific input as of right now this works on all inputs.
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("placeholder", "this.value=' Your text here ' ");
els[i].setAttribute("autocomplete", "off");
}
MarkAnthonyChes
4 years agoCommunity Member
Thank you Daniel!!!