There are two common tasks for mouse which require some tricks.
Showing hand cursor over movieClip:
1 2 3 |
movie.useHandCursor = true; movie.buttonMode = true; movie.mouseChildren = false; // this line is necessary when any child has useHandCursor = false; |
Enabling doubleClick:
1 2 3 |
movie.doubleClickEnabled = true; movie.mouseChildren = false; movie.addEventListener(MouseEvent.DOUBLE_CLICK, onDoubleClick); |
To be continued…