2008年8月1日星期五

AS3格式化文本

格式化文本:
1.使用HTML标签
field.html=true;
field.htmlText="Bold text""Underlined text"

2.使用TextFormat对象进行格式化
var formatter:TextFormat=new TextFormat();
formatter.bold=trueformatter.color=0xffffff
formatter.blockIndent=5
field.setTextFormat(formatter)
for examplefield.text="this is a sample"field.setTextFormat(formatter)

没有评论: