Not seeing image?

So here is my next stumbling block…

I am not getting any errors when trying to add an image, but it does not show up?

Here is what I have going.

Class ActionScrips


   for each(var xml:XML in xmlData.NODE ) {
    if( xml.attribute("active") == "1" ){
     [COLOR=teal]obj = new MovieThumb(xml);[/COLOR]
     obj.x = thumbXBegin;
     obj.y = Math.floor(i * (obj.height + thumbYSpacing) + thumbYBegin);
     addChild(obj);
     i++;
    }
 

Class MovieThumb


[COLOR=black]public function [COLOR=teal]MovieThumb[/COLOR](xml:XML) {[/COLOR]
 
 // Gradient Rectangle
 createGradient( [0, 0], [bgW, bgH], [0x333333, 0x666666], bgW / 2, 1, 0xFF0066 );
 
 // SKU
 createText( [bgW - 10, 5], 0x000000, 12, "Verdana", xml.SKU, "right" );
 
 // TITLE
 createText( [bgW - 10, 20], 0xFF0066, 14, "Century Gothic Bold", xml.TITLE, "right" );
 
 // SML
 createRoundRect( [120, 52], [150, 16], [15, 15], 0xFFFFFF, 1, 0x000000);
 spr.buttonMode = true;
 spr.addEventListener(MouseEvent.CLICK, clickHandler, false, 0, true);
 spr.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler, false, 0, true);
 spr.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler, false, 0 , true);
 createText( [bgW / 2, 50], 0x333333, 12, "Century Gothic bold", "small video", "left" );
 
 // LRG
 createRoundRect( [120, 72], [150, 16], [15, 15], 0xFFFFFF, 1, 0x000000);
 spr.buttonMode = true;
 spr.addEventListener(MouseEvent.CLICK, clickHandler, false, 0, true);
 spr.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler, false, 0, true);
 spr.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler, false, 0 , true);
 createText( [bgW / 2, 70], 0x333333, 12, "Century Gothic bold", "large video", "left" );
 
 // IMAGE
[COLOR=olive]var img:ImageLoader = new ImageLoader(xml.IMAGE, [3, 3]);[/COLOR]
[COLOR=olive]addChild( img );[/COLOR]
}

Class ImageLoader


 
public function [COLOR=olive]ImageLoader[/COLOR]([url:String](http://www.kirupa.com/forum/String), XY:Array) {
 loader = new Loader();
 configureListeners(loader.contentLoaderInfo);
 var urlRequest:URLRequest = new URLRequest(url);
 loader.x = XY[0];
 loader.y = XY[1];
 loader.load(urlRequest);
 [COLOR=darkorange]addChild(loader);[/COLOR]
}
 

I know this is long but bare with me… :crazy:

So here is the objects output


Level #0: Frame=1
  Movie Clip: Frame=0 Target="_level0.instance1"
    Movie Clip: Frame=0 Target="_level0.instance1.instance2"
      Movie Clip: Frame=0 Target="_level0.instance1.instance2.instance3"
      Edit Text: Target="_level0.instance1.instance2.instance4" Variable= Visible=true Text = <P ALIGN=\"LEFT\"><FONT FACE=\"Verdana\" SIZE=\"12\" COLOR=\"#000000\" LETTERSPACING=\"0\"
         KERNING=\"0\">SK-202-1</FONT></P>"
      Edit Text: Target="_level0.instance1.instance2.instance5" Variable= Visible=true Text = <P ALIGN=\"LEFT\"><FONT FACE=\"Century Gothic Bold\" SIZE=\"14\" COLOR=\"#FF0066\" LETTE
        RSPACING=\"0\" KERNING=\"0\">Title 1</FONT></P>"
      Movie Clip: Frame=0 Target="_level0.instance1.instance2.instance6"
      Edit Text: Target="_level0.instance1.instance2.instance7" Variable= Visible=true Text = <P ALIGN=\"LEFT\"><FONT FACE=\"Century Gothic bold\" SIZE=\"12\" COLOR=\"#333333\" LETTE
        RSPACING=\"0\" KERNING=\"0\">small video</FONT></P>"
      Movie Clip: Frame=0 Target="_level0.instance1.instance2.instance8"
      Edit Text: Target="_level0.instance1.instance2.instance9" Variable= Visible=true Text = <P ALIGN=\"LEFT\"><FONT FACE=\"Century Gothic bold\" SIZE=\"12\" COLOR=\"#333333\" LETTE
        RSPACING=\"0\" KERNING=\"0\">large video</FONT></P>"
      [COLOR=olive]Movie Clip: Frame=0 Target="_level0.instance1.instance2.instance10"[/COLOR]
        [COLOR=darkorange]Movie Clip: Frame=0 Target="_level0.instance1.instance2.instance10.instance11"[/COLOR]

Each highlighted in their respective color, so you can see that their being added.

Am I not linking them correctly to the parent sprite?

[COLOR=dimgray]// I can see the bytes loaded for the images //[/COLOR]

Thank you,
Jon