親がムービークリップ内から子を呼び出しているプロジェクトで、子から親 SWF への通信に苦労しています。
親ムービークリップのアクション レイヤーにこれがあります
var loader:Loader = new Loader();
var defaultSWF:URLRequest = new URLRequest("child.swf");
loader.load(defaultSWF);
//I'm using an if statement to check if the movieclip is loaded to stage
if (loader.parent != null) {
loader.dispatchEvent(new Event(Event.ADDED_TO_STAGE));
trace("loader added to stage"); // trace returns positive
loader.content.addEventListener("directions", childLoader_someSignalHandler);
}
//once a button in the child SWF is clicks the playhead will
//change position on the parent.
function childLoader_someSignalHandler(event:Event):void {
gotoAndStop("directions");
}
子 SWF には、親に送信する次のコードがあります。
centre_btn.addEventListener(MouseEvent.MOUSE_DOWN, childBtn_mouseDownHandler);
// thanks to "Florent" for this code.
function childBtn_mouseDownHandler(event:MouseEvent) {
dispatchEvent(new Event("directions"));
}
私が返されているエラーは次のとおりです。
TypeError: エラー #1009: null オブジェクト参照のプロパティまたはメソッドにアクセスできません。