ライブラリからMCを配置
MCオブジェクトのattachMovieメソッドを利用
Adobeリファレンスガイドより
public attachMovie(id: String, name: String, depth: Number, [initObject: Object]) : MovieClip
id:ライブラリの中のMCのリンケージ識別子
name:新しく配置するインスタンスの名称
depth:深度
initObject:新インスタンスのパラメータ
例
this.attachMovie(“circle”, “circle1_mc”, this.getNextHighestDepth());
this.attachMovie(“circle”, “circle2_mc”, this.getNextHighestDepth(), {_x: 100, _y: 100});
_root.attachMovie(“linHoge”, “myHoge_mc”, 0);
でも配置できるし
var myHoge = new MovieClip();
myHoge = _root.attachMovie(“linHoge”, “myHoge_mc”, 0);
とすることで、オブジェクト変数に代入することも可能
また、既に配置されているMC上に配置するときは
_root.myHogeHoge_mc.attachMovie(“linHoge”, “myHoge_mc”, 0);
としてやればOK