有没有人知道如何为标签组件制作边框(mx.controls.Label)?我看了http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/Label.html,但找不到路。
答案 0 :(得分:1)
您可以使用mx.core.mx_internal
更改mx.controls.Label
组件的边框颜色,如下所示:
my_label.mx_internal::getTextField().border = true;
my_label.mx_internal::getTextField().borderColor = 0xff0000;
您应该知道此方法不适用于spark.components.Label
组件。
希望可以提供帮助。