当前位置:  开发笔记 > 编程语言 > 正文

找不到mx.core :: BitmapAsset

如何解决《找不到mx.core::BitmapAsset》经验,为你挑选了1个好方法。

我试过代码EmbedAssets.as低于样品在这里找到: http://www.senocular.com/flash/tutorials/as3withmxmlc/

使用mxmlc.exe构建并在Flash Player 9中测试输出EmbedAssets.swf时出现此错误:

VerifyError:错误#1014:找不到mx.core :: BitmapAsset

package {
    import flash.display.Sprite;
    public class EmbedAssets extends Sprite {

        [Embed(source="images/trophy.png")]
        private var TrophyImage:Class;

        [Embed(source="swfs/satdish.swf")]
        private var SatelliteAnimation:Class;

        public function EmbedAssets() {
            addChild(new SatelliteAnimation());
            addChild(new TrophyImage());
        }

    }
}

satdish.swf没有损坏所以我不明白为什么这个错误消息.



1> Jamie Wong..:

要么修改flex-config

true

或手动传入参数 mxmlc

mxmlc -static-link-runtime-shared-libraries=true -debug=true Main.swf -- Main.as

我有同样的问题 - Actionscript 3中的外部配置文件

推荐阅读
手机用户2502852037
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有