Ninjadoodle Posted September 19, 2018 Share Posted September 19, 2018 Hi @enpu / Panda People I've done this in the past, but can't seem to remember how it's done now ... Any ideas on how to make all the children of a container interactive or non interactive. Thanks heaps for any advice! Quote Link to comment Share on other sites More sharing options...
enpu Posted September 19, 2018 Share Posted September 19, 2018 Loop through the childrens and set interactive variable. for (var i = 0; i < container.children.length; i++) { var child = container.children[i]; child.interactive = true; } Ninjadoodle and Wolfsbane 2 Quote Link to comment Share on other sites More sharing options...
Ninjadoodle Posted September 19, 2018 Author Share Posted September 19, 2018 @enpu - Thank you! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.