TextLine could not disable mouse events
I create a FTE's TextLine object, and set mouseChildren and mouseEnabled false, but it is still clickenabled!
and how can I disable mouse enabled on TextLine object?
I create a FTE's TextLine object, and set mouseChildren and mouseEnabled false, but it is still clickenabled!
and how can I disable mouse enabled on TextLine object?
TextLine has this problem, so if you want to textline disable mouse events, you could insert textline into a sprite object, and set the sprite's mouseChildren is false
var container:Sprite = new Sprite();
container.addChild(textline);
container.mouseChildren = container.mouseEnabled = false;
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.