如何在 Flash Builder 中使背景颜色透明

发布于 2024-10-16 12:03:20 字数 195 浏览 3 评论 0原文

我在 FlashBuilder 中有一个列表。它将允许我为选择、翻转、焦点等选择颜色。但我不知道如何使这些项目之一透明。

我可以设置整体背景的 Alpha,但如果我想要一种状态不改变颜色怎么办?我不能只是不设置它们,除非我创建一个全新的主题,因为它们有默认颜色。

我想知道正确的 mxml 声明是否有:selectionColor="????"

I have a list in FlashBuilder. It will allow me to choose colors for the selection, rollover, focus etc.. but I do not know how to make one of those items transparent.

I can set the alpha of the overall background, but what if I want one state just not to change color? I can't just not set them unless I create a whole new theme because they have default colors.

I'd like to know the proper mxml declaration if there is one: selectionColor="????"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红衣飘飘貌似仙 2024-10-23 12:03:20

要提供特定于州的属性,您只需使用...

selectionColor.stateName="????"

在 MXML 中,其中 stateName 是您所在州的名称。

应该适用于任何元素属性。

 attributeName.stateName="????"

例如

 visible.closed="false"

To supply a state specific attribute you just use...

selectionColor.stateName="????"

In the MXML, where stateName is the name of your state.

This should work for any element attribute.

 attributeName.stateName="????"

e.g.

 visible.closed="false"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文