ActionScript 3 AS3格式化TextArea组件的文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3格式化TextArea组件的文本相关的知识,希望对你有一定的参考价值。
import flash.text.TextFormat;
import fl.controls.TextArea;
import fl.managers.StyleManager;
var myTextArea:TextArea = new TextArea();
myTextArea.setSize(200, 100);
myTextArea.text = "Hello World";
var myTextFormat:TextFormat = new TextFormat();
myTextFormat.font = "Arial";
myTextFormat.size = 18;
myTextFormat.bold = true;
myTextFormat.italic = true;
myTextFormat.underline = true;
myTextArea.setStyle("textFormat", myTextFormat);
myTextArea.x = 30;
myTextArea.y = 30;
addChild(myTextArea);
// To set ALL TextAreas to this style use ...
// StyleManager.setComponentStyle(TextArea, "textFormat", myTextFormat);
以上是关于ActionScript 3 AS3格式化TextArea组件的文本的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 AS3显示BytesTotal为兆字节(格式化)
ActionScript 3 AS3以YYMMDD格式获取当前日期(反向格式)
ActionScript 3 AS3动态文本粗体格式
ActionScript 3 AS3格式化英国手机号码(XXXXX XXXXXX)
ActionScript 3 AS3从脏时间戳字符串获取格式化时间
ActionScript 3 用于格式化日期的AS3类,如PHP函数日期