flash cs4:按下按钮后更改按钮的外观

发布于 2024-08-26 20:42:58 字数 223 浏览 6 评论 0原文

我正在尝试创建一个包含 5 个按钮的顶部面板菜单。

我为每个按钮配置了 Up 和 Over 状态。

我如何配置该按钮被单击时,按钮的外观将更改为我在“结束”状态下配置的外观。

每个状态都包含不同的图像。

有没有办法将按钮的外观更改为使用动作脚本在不同状态下配置的外观?

使用 Flash CS4 Action Script 3。

谢谢。

I'm trying to create a top panel menu that contains 5 buttons.

I configured Up and Over state for each button.

how can I configure that one the button is clicked, the look of the button will change to the look i configured in Over state.

Each state contains a different image.

Is there a way to change the look of the button to the look it configured in it's different states using Action Script?

Using Flash CS4 Action Script 3.

thank you.

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

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

发布评论

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

评论(3

很快妥协 2024-09-02 20:42:58

像这样的东西应该有效:

button.addEventListener(MouseEvent.CLICK, onButtonClick);
function onButtonClick(e:MouseEvent):void {
    // Given you have a changeColor method defined in your button class
    e.target.changeColor('#ff9900');
}

Something like this should work:

button.addEventListener(MouseEvent.CLICK, onButtonClick);
function onButtonClick(e:MouseEvent):void {
    // Given you have a changeColor method defined in your button class
    e.target.changeColor('#ff9900');
}
哭了丶谁疼 2024-09-02 20:42:58

在按钮的 onClick 事件中,您可以将 Up 外观更改为与 Over 外观相同。

In the onClick event for the button you can change Up skin to be the same as the Over skin.

流云如水 2024-09-02 20:42:58

我通过创建一个包含两个帧的 MovieClip 解决了这个问题,每个帧对应一个按钮状态,
我只是在需要移动到所需的帧时使用 gotoAndStop 。

在每种状态下,我不仅需要更改颜色,还需要更改按钮的所有视觉呈现。

看来我找不到任何方法来使用常规按钮对象来做到这一点。

谢谢。

I resolved the issue by creating a MovieClip with two frames, one for with each button state,
and i just used gotoAndStop when needed to move to the required frame.

In each state I didn't need only to change color, but to the change the all visual presentation of the button.

it seems that i could not find any way to do that with a regular Button Object.

thanks.

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