I have some components in the library being exported to actionscript, and I add them to MovieClip,like this:
var imgs01:ImgShow01=new ImgShow01 ;
var imgs02:ImgShow02=new ImgShow02 ;
var imgs03:ImgShow03=new ImgShow03 ;
var imgs04:ImgShow04=new ImgShow04 ;
var imgs05:ImgShow05=new ImgShow05 ;
var imgs06:ImgShow06=new ImgShow06 ;
this.addChild(imgs01);
this.addChild(imgs02);
this.addChild(imgs03);
this.addChild(imgs04);
this.addChild(imgs05);
this.addChild(imgs06);
I want to know another simple way to do that in AS3 ?
Thanks in advance for your help!