受信側:
//メインタイムラインのフレームアクション
receive_lc = new LocalConnection();
receive_lc.allowDomain = function(domainName) {
if (domainName == this.domain() || domainName == "www.domain.com") {
return true;
} else {
message_txt.text = "許可していないドメインです";
return false;
}
};
receive_lc.goNext = function() {
photo_mc.nextFrame();
};
ok = receive_lc.connect("_receiver");
if (!ok) message_txt.text = "接続できません";