EventListener(s)
If I use
stage.removeChild (myIdentifier)
myIdentifier = null;
will that also remove any eventListeners attached to that asset?
I might have eventListeners attached through the main.as class or through the actual asset's class itself.
When I remove that asset would I go through and remove each listener 1 by 1 in the same way they were added?
stage.removeEventListener(event.Event, eventIdentifier);
myIdentifier.removeEventListener(event.Event, eventIdentifier); <----- will this work if the event Listener is added in the Class.as and not in the Main.as class im coding in?
Sorry if anything is confusing, im pretty new to all of this
