Loader/getchildbyname question

Hi all, AS3 beginner here :slight_smile:
I’m trying to do load in images from XML. And I need to assign a “title” variable to each image that gets added into a big container MC.

I tried to trace its existance by doing trace(container_mc.getChildByName(“collection1”));

But I ended up getting “null” or “[object Loader]”

So getChildByName only works with DisplayObjects by the looks of it. If that’s the case will I have to place the image Loader into another MovieClip in the XML loop?

Thanks in advance!


function loadImages(collectionList:XML):void {
            var imageList:XMLList=collectionList.collection.img;
            var titleList:XMLList=collectionList.collection.title;
            createContainer();
            for (var i:Number=0; i<imageList.length(); i++) {

                var img_url=imageList*;
var img_title=titleList*;
                var img_loader=new Loader  ;
                img_loader.load(new URLRequest(img_url));
                img_loader.contentLoaderInfo.addEventListener(Event.COMPLETE,imageLoaded);
                img_loader.x=350*i;

                img_loader.name="collection"+i;
                
            }
        }

        function createContainer():void {
            containerHeight=350;
            containerWidth=2100;
            container_mc=new MovieClip();
            container_mc.y=stage.stageHeight/2-containerHeight/2;
            container_mc.x=stage.stageWidth/2-containerWidth/2+175;
            addChild(container_mc);

        }
        function imageLoaded(e:Event):void {
            var my_thumb:Loader=Loader(e.target.loader);
            container_mc.addChild(my_thumb);

            my_thumb.alpha=0;
            TweenLite.to(my_thumb,0.5,{alpha:1,ease:Quint.easeInOut});

            trace(container_mc.getChildByName("collection1"));
        }