Hi all,
I have the following situation:
I have a main swf file (let’s call it MAIN) that loads an external swf and adds it as child of itself.
The MAIN swf has an eventListener for mouse Events (in bubbling phase) so that if I click on the MAIN swf something happens.
BUT… if the external swf has some displayobjects with eventListener on mouse events I don’t want that the MAIN swf processes that event.
If i had control on all external swf I would resolve it adding a stopImmediatePropagation but I dont have control over external swf (that may be implemented by other people).
So the question is: is there a way to understand (in the bubbling phase) if the event has been processed by some other objects during previous phases?
thanx all