Copy link to clipboard
Copied
Good morning. I use the "textinput" component in my game. I noticed that this message is displayed in the console in the Chrome browser. What could it mean? Will Adobe update "textinput" to work if the Listener is already removed from the browser? What can I do to avoid the game not working once this is removed?
Copy link to clipboard
Copied
you can ignore that or build your own text input.
Copy link to clipboard
Copied
Hello, but do you think there is a real threat that tex inputs will stop working in the near future?
Copy link to clipboard
Copied
near future? probably not.
otoh, you can encode an input element to use in animate if you understand javascript.
Copy link to clipboard
Copied
I found and changed this as suggested, it's on line 135 in anwidget.js:
$(parent).bind("MutationObserver", function(e) { //$(parent).bind("DOMNodeRemoved", function(e) {
That got rid of the error message and did not break anything so far 😉
Copy link to clipboard
Copied
Oh my, oh my! It's working. It enables working with video (video component) and interactive animation. So cool. Thanks a lot for this precious tip.