我想使用 AS3 更改当前在舞台上的 Flash 的 TextArea 组件的字体大小。
我尝试通过实例名称将 TextFormat 对象链接到 TextAera,但出现此错误:
Scene 1, Layer 'actions', Frame 1, Line 44 1061: Call to a possibly undefined method setTextFormat through a reference with static type fl.controls:TextArea.
这是AS3代码:
var myTextFormat:TextFormat = new TextFormat();
myTextFormat.font = "Arial";
myTextFormat.size = 10;
myTextFormat.color = 0xffffff;
my_textArea.setTextFormat(myTextFormat)