菜单按钮不起作用

时间:2013-04-15 08:48:44

标签: button user-interface actionscript menu actionscript-2

我正在尝试创建一个菜单屏幕,允许用户按下包含以下实例的按钮。我知道我几乎拥有它,但我无法弄清楚它有什么问题。

stop();

home_btn.onRelease {
    gotoAndStop(1);
}
graphics_btn.onRelease {
    gotoAndStop(3);
}
animation_btn.onRelease {
    gotoAndStop(2);
}

2 个答案:

答案 0 :(得分:0)

您可以使用mx.utils.Delegate类:

import mx.utils.Delegate;

home_btn.onRelease = Delegate.create(this, function() {
    gotoAndStop(1);
})

http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00002284.html

答案 1 :(得分:0)

stop();

home_btn.onRelease = function() {
    gotoAndStop(1);
}
graphics_btn.onRelease = function() {
    gotoAndStop(3);
}
animation_btn.onRelease = function() {
    gotoAndStop(2);
}

添加=function()