ロードされた外部SWF内の_rootの参照先を固定するには

//メインタイムラインのフレームアクション(親SWF内に記述)
this._str = "parent";
this.true_btn.onRelease = function(){
_mc._lockroot = true;
};
this.false_btn.onRelease = function(){
_mc._lockroot = false;
};
this._mc.loadMovie("child.swf");

//メインタイムラインのフレームアクション("child.swf"に記述)
this._str = "child";
this.rect_mc.onPress = function(){
_txt.text = _root._str;
};

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