0

这是我的代码:

http://pastebin.com/nSkVkTJT

错误是第 123 行和第 128 行。

我用谷歌搜索了这个错误,但我仍然无法修复它,这让我困惑了一个小时!我试过添加花括号,但仍然是同样的错误。

请帮忙,谢谢!

我像这样离开了第 123 和 128 行

    function _update(e:Event):void
    {
        _helicopter.update(_mouseDown);
    }

     function onEnterFrame(e:Event):void
    {'

但是我收到一条错误消息,指出未定义 _update

4

2 回答 2

0

在定义嵌套函数时,我不相信您可以指定访问修饰符。

public class X extends MovieClip
{

    public function f():void
    {
        /* illegal - nested function with private modifier not allowed */
        private function nested():void {};

        /* valid - nested function */
        function nested():void {};
    }

}

因此,如果您在函数中定义函数,请删除private访问修饰符关键字,它应该可以编译。

就个人而言,我建议将这些函数拉到主类定义的范围内。

于 2012-04-05T21:14:43.430 回答
0

在您发布的代码中,您缺少 2 个尾随“}” 如果您更好地格式化代码,您会更容易找到。

private function onEnterFrame(e:Event):void{
  if (startme){
    x -= speed;
  }

  // make me start again when I go off-screen
  if (x < -42){
    speed = Math.floor(Math.random() * 9 + 5);
    height = Math.floor(Math.random() * 200 + 5);
    x = 551;
    if(updown == 2){
      y = 0;
    }else{
     y = 400 - height;
    }
  }// <------ you are missing this
}// <-------- you are missing this
于 2012-04-05T22:09:22.983 回答