我有一个问题,所以我创建了一个名为Container1.mxml的mxml容器文件,其中包含
<mx:VBox>
<mx:Label text="{textName}" />
</mx:VBox>
所以我打电话的时候 它会像
<container:Container1 id="hello" />
然后,ID将出现在我的标签文本中。
提前欣赏它。谢谢答案 0 :(得分:2)
假设你不能只使用text="{this.id}"
?
在Container1.mxml中,有一个创建完整的侦听器来调用这个函数:
protected function _handleCreate(e:Event):void {
myTextLabel.text = this.id || "unknown";
}