Is it possible to remove an event listener on a class, from outside of that class?
Let’s say I have a class and do this.
thisClass.addEventListener(Event.ENTER_FRAME, eFrameRight)
could I remove it from outside of “thisClass”
Because I wanna remove the child that is “thisClass” and it’s event listeners, but it isn’t working.