Do stopPropagation work for custom events? i have a custom event dispatched to two different listeners also if i call stopPropagation from the first one.
Nope, stopPropagation is only for mouse and touch events. Because only for them there is a definite dispatching order (the display object on top receives the event first).
Comments