ステージにムービークリップを追加するには

//メインタイムラインのフレームアクション
this._mc = this.createEmptyMovieClip("parent_mc", 0);
child_num = 0;
init_obj = {_x:100, _y:140, _rotation:0, _alpha:50};
this.child_mc = this._mc.attachMovie("mc_leaf", "leaf" + child_num + "_mc",10 * child_num,init_obj);
while (++child_num < 18) {
init_obj._rotation += 20;
this.child_mc.duplicateMovieClip("leaf" + child_num + "_mc",10 * child_num,init_obj);
}
this.remove_btn.onRelease = function(){
_mc.removeMovieClip();
};
・サンプルを実行
・サンプルをダウンロード
Action Script逆引きクイックリファレンス 説明などは本書を参考にしてください。