I have this main (document class) in a Flash project:
package {
import flash.display.MovieClip;
import flash.events.Event;
public class main extends MovieClip {
public function main() {
var other=new Other(this);
}
}
}
This one is Other class:
package {
import flash.display.MovieClip;
import Clippo;
public class Other extends MovieClip {
//
public function Other(ref) {
//
var clippo = new Clippo();
clippo.name="clippo";
clippo.x=100;
clippo.y=100;
//1
//ref.addChild(clippo);
//2
addChild(clippo);
}
}
}
Now: if I pass a reference (ref) of the main class to Other and I add clippo as you can see in the first case, I can reference the movieclip clippo from the main (getChildAt(0) is "clippo" from the main). But, is there any way to use the second method (no ref) and do the same from the main class? I can see clippo onstage when Other creates it but I can't understand where clippo "lives" into the DisplayList.
Clippoto the instance ofOther(like you have) and simply add the instance ofOtherto the instance ofmainlike thisvar other = new Other(); addChild(other);. I was going to give this as an answer but I get the feeling that even though yourOtherobject is aMovieClipobject, it was never intended to be used as such, I think you probably extendedMovieClipwhen you didn't have to, but I could be wrong. – Taurayi Aug 21 '11 at 20:47