0

我正在使用 Starling、AS3 for mobile 开发一个应用程序,并希望合并 Feathers UI。我正在使用 Starling 1.2 并尝试添加 MetalWorksMobile 主题但不断收到错误:找不到类型或不是编译时常量:ImageLoader

不确定这意味着什么或如何解决它。

干杯

在主 .as 文件中:

this._theme = new MetalWorksMobileTheme(this.stage);

在 MetalWorksMobileTheme.as 中:

protected function imageLoaderFactory():ImageLoader
{
    const image:ImageLoader = new ImageLoader();
    image.textureScale = this.scale;
    return image;
}
4

1 回答 1

0

您应该为 Feathers 使用最新的 Starling 版本,您可以在此处获取https://github.com/PrimaryFeather/Starling-Framework.git。这个版本没有这样的错误。

于 2012-12-06T15:24:05.130 回答