Happy New Year, by the way!
I want to separate the event handling from the container and its child. So, as you can see, my source code is very simple:
package { import flash.display.Sprite; import flash.display.*; import flash.events.*; public class test extends Sprite{ public function test() { var container:Sprite = new Sprite();
When I look at the container object, I have a trace (OK for me). BUT When I look at the decor object, I also have a trace (not what I want). I just want the container to be fired by a mouse event, not a child. So what happened to my mouseChildren = false ....? I do not understand...
source share