我想在不响应鼠标活动的舞台上创建一些文本。我发现在将一段文本添加到我正在使用的类中后,它会覆盖我班级的一些鼠标区域并禁止用户滚动其他图形元素...
是否有类似的东西:
var t:TextField = new TextField();
t.text = "hello";
t.active = false; //i know that this is wrong, but I haven't found an equivalent method
谢谢, JML
答案 0 :(得分:2)
使用此
t.selectable = false;