ActionScript 3 AS3:使用新的TextFormat()向TextInput组件添加样式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3:使用新的TextFormat()向TextInput组件添加样式相关的知识,希望对你有一定的参考价值。
var tf:TextFormat = new TextFormat();
tf.size = 25;
tf.color = "#FEFEFE";
var ti:TextInput = new TextInput();
ti.x = 100;
ti.y = 100;
ti.width = 200;
ti.height = 30;
ti.htmlText = "<p>Snippler Rocks!</p>";
ti.setStyle("textFormat", tf);
addChild(ti);
以上是关于ActionScript 3 AS3:使用新的TextFormat()向TextInput组件添加样式的主要内容,如果未能解决你的问题,请参考以下文章
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