ActionScript 3 AS3:使用新的TextFormat()向TextArea组件添加样式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3:使用新的TextFormat()向TextArea组件添加样式相关的知识,希望对你有一定的参考价值。

var textAreaFormat:TextFormat = new TextFormat();
textAreaFormat.size = 30;
textAreaFormat.italic = true;

var ta:TextArea = new TextArea();
ta.x = 100;
ta.y = 100;
ta.width = 300;
ta.height = 300;
ta.setStyle("textFormat", textAreaFormat);
ta.htmlText = "This is text within a text area";
addChild(ta);

以上是关于ActionScript 3 AS3:使用新的TextFormat()向TextArea组件添加样式的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3:使用新的StyleSheet()对象向TextField()添加样式

ActionScript 3 AS3:使用新的TextFormat()向TextArea组件添加样式

分析 ActionScript-3 代码

ActionScript 3 AS3:使用SWFObject2和AS3传递变量

ActionScript 3 使用AS3绘制一个矩形

ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML