SWFファイル同士で通信するには

送信側:
//メインタイムラインのフレームアクション
send_lc = new LocalConnection();
submit_btn.onRelease = function() {
send_lc.send("receiver", "putMessage", input_txt.text);
input_txt.text = "";
};

受信側:
//メインタイムラインのフレームアクション
receive_lc = new LocalConnection();
receive_lc.putMessage = function(msg) {
monitor_txt.text += msg + "\n";
monitor_txt.scroll ++;
};
ok = receive_lc.connect("receiver");
if (!ok) monitor_txt.text = "接続できません";
close_btn.onRelease = function() {
receive_lc.close();
};

・サンプルを実行
・サンプルをダウンロード
Action Script逆引きクイックリファレンス 説明などは本書を参考にしてください。