0

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

stop();

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

2 回答 2

0
stop();

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

添加=function()

于 2013-04-20T00:33:25.453 回答
0

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

导入 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

于 2013-04-18T19:44:25.837 回答