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
I was able to workaround this with some javascript.
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");
}
Not the most ideal, but it works
MarkAnthonyChes
4 years agoCommunity Member
Hello Daniel,
I am having the same problem. Could you tell me where you placed your script? And it seems that "input" would be the variable name attached to the text entry field if I imagine correctly....?
Thanks in advance!