如何设置tileList组件的字体为抗锯齿动作脚本3

时间:2010-07-02 15:17:10

标签: flash actionscript-3 flash-v3-components

我有一个tileList组件,我想知道如何对每个标签内的字体进行抗锯齿处理。我使用以下内容嵌入了字体:

leftList.setRendererStyle("embedFonts", true);

到目前为止,我已经尝试过专门定位标签而没有运气。

没用。

var theTextField:TextField = leftList.label;
leftList.antiAliasType = "advanced";

有人有建议吗?

感谢。

1 个答案:

答案 0 :(得分:1)

尝试设置文本格式,并确保嵌入您使用的字体。

e.g。

var format:TextFormat = new TextFormat("Verdana",12,0x990000);
leftList.setRendererStyle('textFormat',format);
leftList.setRendererStyle('embedFonts',true);

HTH