flash - Making dynamic text item transparent for mouse -


I am working with actionscript 3 and I have trouble.
I have to write a player where the user will see the text in front of the movie
Text is the text field of type "dynamic text".
The problem is that I need to make the text object transparent for mouse move and click.
I tried:

  .mouseEnabled = false; .selectable = false;  

... but it does not help - when I click on it - it does not click through it.

You can not pass mouse events through applications that apply to a selected item.

The only thing that you can do is see this DisplayObjectContainer.getObjectsUnderPoint (<) method and see 'what' ... this point is XY of the mouse.

I know that it is useless, but - . You can of course post an event, but the context of the click that has been clicked is no longer applicable.


Comments