codice:
this.path=_root;
this.linkageClip="mioClip"; // devi concatenare il tuo clip però dalla libreria -> tast dx-> concatenamento->esporta per AS -> scrivi il nome
this.depth=10; //profondità nella gerarchia dei livelli di this.path
this.initializingObject={};
this.initializingObject._x=valore;
this.initializingObject._y=valore;
this.path.attachMovie(this.linkageClip, "nomeIstanzaNuovoClip", this.depth,this.initializingObject);
puoi fare anche così:
this.path.attachMovie(this.linkageClip, "nomeIstanzaNuovoClip", this.depth,{_x:valore; _y:valore});