gpt4 book ai didi

ios - 如何向 AS3 中的文本字段添加样式?

转载 作者:行者123 更新时间:2023-11-29 03:04:51 26 4
gpt4 key购买 nike

当我按下一个按钮时它会显示文本,但我该如何添加样式呢?例如位置和颜色。

import flash.text.TextField;

var tf:TextField= new TextField();


convob.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);

function fl_MouseClickHandler(event:MouseEvent):void
{

tf.text="hello world";


addChild(tf);

}

最佳答案

像这样:

var format:TextFormat = new TextFormat();
format.color = 0x555555;
format.size = 18;
format.align = TextFormatAlign.CENTER;
format.bold = false;
tf.setTextFormat(format);

检查 TextFormat 的类引用:http://help.adobe.com/en_GB/FlashPlatform/reference/actionscript/3/flash/text/TextFormat.html

关于ios - 如何向 AS3 中的文本字段添加样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22902207/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com