0

我是 Flash 新手,我正在尝试将模型放到网上,并尝试使用 cast3D 框架。当我尝试第一个教程时,出现了这个错误:“1046:找不到类型或不是编译时常量:LoadEvent。” 发生错误的代码区域:

private function cast3dLoadComplete(event: LoadEvent): void
    {
        trace("cast3dLoadComplete ");
        this.manipulator = new TrackBall(this.animator,this.stage,
                                 this.stage.stageWidth, this.stage.stageHeight,
                                 Manipulator.Y_UP);
                       this.loaded = true;
                       removeTimer();                                   
                      if (loader.loaderror.length)
                      {
            statusText.textColor = 0xff0000;                                
            statusText.text = loader.loaderror;            
                       }
                      else
                      {                                 
            statusText.visible = false;
                      }
    }

    /**
     * Handles the load Error event
     */     
    private function cast3dLoadError(event: LoadEvent): void
    {
        trace("cast3dLoadError ", event.message );
                    removeTimer();
        statusText.textColor = 0xff0000;                                
        statusText.text = event.message;
    }               
}
}

有人可以告诉我代码有什么问题吗?非常感谢阿德里安

4

1 回答 1

0

此错误告诉您它找不到LoadEvent属于 cast3D 框架的类。我怀疑你没有包括包含类的 cast3D swc。

可以从这里下载 - cast3D SWC

如果您仍然有问题,那么您将如何包含它们的类,并且该方法取决于您使用的是 Flash IDE、Flash Develop 还是 Flash Builder。

编辑:

我正在使用 CS5,但在 CS3 上应该类似,进入菜单:

编辑 -> 首选项 -> Actionscript 3 -> 库路径 -> 浏览 SWC

应该会在下面看到一个与此类似的面板!

在此处输入图像描述

于 2012-05-16T20:56:04.090 回答