I have trouble understanding the path the EnterFrame Event takes for Propagation. I understand that Events have 3 Phases: Capturing, AtTarget und Bubbling.
When I look at the flash.events.Event class I see that Event does not Bubble.
If I add an Eventlistener on any DisplayObject it receives the Enter frame event. If I do the same with useCapture = true no Event is received.
But shouldn't all Events pass through the capturing phase? If I check the Event target it returns the receiving DisplayObject as its target.
Does the target for the EnterFrame event get changed while propagating or is a new Event created and passed to every DisplayObject?
Does Flash keep a separated List with all DisplayObjects? Because the EnterFrame event is even received when the DisplayObject is not added to the Display Tree?