我有这个自定义类,它扩展了EventDispatcher
private var assetsManager:AssetManager;
这在creationComplete上运行
GeneralUtils.parentComponent = this;
this.assetsManager.addEventListener(AssetEvent.ASSETS_LOADED,OnAssetsLoaded);
this.LoadConfigFile();
我在第二行收到1009错误。我已经看了一段时间,无法弄清楚它找不到的东西。 OnAssetsLoaded函数就在那里。有什么想法吗?
答案 0 :(得分:1)
似乎你没有创建assetManager对象。你需要明确地创建它
assetsManager = new AssetManager ();
在尝试将侦听器附加到它之前