flash cs4:按下按钮后更改按钮的外观
我正在尝试创建一个包含 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样的东西应该有效:
Something like this should work:
在按钮的
onClick
事件中,您可以将Up
外观更改为与Over
外观相同。In the
onClick
event for the button you can changeUp
skin to be the same as theOver
skin.我通过创建一个包含两个帧的 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.