更改按钮状态上的标签颜色 (FLEX 4)

发布于 2024-10-21 14:00:20 字数 670 浏览 4 评论 0原文

我的应用程序中有一个按钮,我希望它以特殊的方式做出一些响应。最初按钮的标签颜色是白色,我希望文本的颜色在“上方”状态下更改为 50% 白色,在“按下”状态下更改为 25%。这可能吗?

我尝试了使用 css 的替代方法,它不执行百分比操作,而仅更改颜色(请参阅下面的 css 代码),但这似乎不起作用。我更具体地希望颜色按照我上面提到的百分比变化。有人可以帮忙解决这个问题吗?

请注意,我仅使用外观文件来加载按钮上每个状态的图像。

s|Button#specialButton {
 downSkin: Embed(source="text.swf", symbol="btn_focus");
 overSkin: Embed(source="text.swf", symbol="btn_hover");
 upSkin: Embed(source="text.swf", symbol="btn_normal");
 disabledSkin: Embed(source="menuButtons.swf", symbol="btn_disabled");
 skinClass: ClassReference("specialbuttonSkin");
 color:#ffffff;
 textRollOverColor: #ffffff;
 textSelectedColor: #d0d0d0;
}

感谢您的帮助。

I have a button in my application and I want it to respond a bit in a special way. Initially the label color of the button is White, I want the color of the text to change to 50% white on the Over State and to 25% on the Down state. Is this possible?

I tried an alternative way using css which does not do the percentage stuff but only changes the color (see css code below), but this does not seem to work. I more specifically want the color to change in terms of percentage like I mentioned above. Can someone help on this one pls?

Note that I am using the Skin file only to loads images for each state on the button.

s|Button#specialButton {
 downSkin: Embed(source="text.swf", symbol="btn_focus");
 overSkin: Embed(source="text.swf", symbol="btn_hover");
 upSkin: Embed(source="text.swf", symbol="btn_normal");
 disabledSkin: Embed(source="menuButtons.swf", symbol="btn_disabled");
 skinClass: ClassReference("specialbuttonSkin");
 color:#ffffff;
 textRollOverColor: #ffffff;
 textSelectedColor: #d0d0d0;
}

Thanks for your help.

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

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

发布评论

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

评论(1

大姐,你呐 2024-10-28 14:00:20

我的做法如下:根据当前状态设置文本 alpha。实现此目的的最简单方法是在声明按钮实例时在 MXML 中进行设置,如下所示:

<s:Button label="My Button" textAlpha.over="0.5" textAlpha.down="0.25"/>

希望有帮助。

Here's how I would do it: Set the text alpha based on the current state. The easiest way to achieve this is to set it up in MXML when declaring the instance of your button, like so:

<s:Button label="My Button" textAlpha.over="0.5" textAlpha.down="0.25"/>

Hope that helps.

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