2

我在 actionscript 中创建了一个 TextArea:

var textArea:TextArea = new TextArea();

我希望它有黑色背景。我试过了

textArea.setStyle("backgroundColor", 0x000000);

我试过了

textArea.opaqueBackground = 0x000000;

但 TextArea 保持白色。我该怎么办?

4

2 回答 2

5

TextArea 是由 TextField 和其他 Flash 内置类和 UIComponents 构建的 UI 组件。与大多数 Adob​​e UI 组件一样,设置属性时似乎没有任何东西。要设置 TextArea 中文本后面区域的颜色,您需要使用 textField 属性实际设置其内部 TextField 的不透明背景:

var textArea:TextArea = new TextArea()
textArea.textField.opaqueBackground = 0x000000;

当然现在背景是黑色的,文字不可能也是黑色的,所以我们用一个新的TextFormat来改变它的颜色:

var myFormat:TextFormat = new TextFormat();
myFormat.color = 0xffffff;
textArea.setStyle("textFormat",myFormat);

然后只需设置文本并添加到阶段:

textArea.text = "hello";
addChild(textArea); 

另外,如果你想要更多的控制,这里有一个很好的扩展类,它修复了 TextArea 的很多问题:

http://blog.bodurov.com/Post.aspx?postID=14

于 2008-10-06T19:53:35.220 回答
1

这是对我有用的方法,这是我在查看更新的 AC3 文档后自己发现的

TextArea - 背景颜色,2011 AC3

让我永远意识到,在 AC3 中,截至目前(2011 年),他们正式告诉你使用 spark TextArea 而不是 mx

s:TextArea而不是mx:TextArea

<s:TextArea
id="joy_text"
color="0xFF0000"
contentBackgroundColor="0x000000"
text = "joy"
/>

请注意

颜色 = 字体颜色

确保包含在您的命名空间中:(在 .mxml 文件的顶部)

xmlns:s="library://ns.adobe.com/flex/spark"
于 2011-10-19T14:06:29.193 回答