...Well, encountering a problem here: BTW: I'm using the names of the Instances of the Movie Clips. So, for example, this below works (adds EventListeners): ================== this.Instance1Name.addEventListener('click',clickActions.bind(this)); //Add eventListner to Instance1. this.Instance1Name.Instance2Name.addEventListener('click',clickActions.bind(this)); //Add it to the Instance2 ================== //You'll notice that Instance2 is the instance name given to a child MC (it's within the Instance1, parent MC) Probably that's why this doesn't work: ================== var myArray=['Instance1Name','Instance2Name']; //<=These are the actual names of the instances of the MCs. for(var i=0;i<myArray.length;i++){ this[myArray].addEventListener('click',clickActions.bind(this)); } ================== It only adds the EventListener to the parent, Instance1, not the child, Instance2. If that's the problem, how do I refer to the path to instance2 in the above array? Thanks again.
... View more