XML problem

[COLOR=#ff0000][COLOR=black]I’m not getting the XML data in to my dynamic boxes and movie [/COLOR][/COLOR][COLOR=black]clip. Why? Please help me out. [/COLOR]

[COLOR=#ff0000]


[COLOR=black]import gs.dataTransfer.XMLParser;[/COLOR]
[COLOR=black]var senderLoad:LoadVars = new LoadVars();[/COLOR]
 
[COLOR=black]sender.onRelease = function () {[/COLOR]
[COLOR=black][COLOR=dimgray]//this is the ID I'm sending to the PHP[/COLOR] [/COLOR]
[COLOR=black]senderLoad.fin = fin.text;[/COLOR]
[COLOR=slategray]//here I'm trying to get the results up on the sent ID[/COLOR]
[COLOR=black]senderLoad.sendAndLoad = XMLParser.load("[/COLOR][[COLOR=black]http://www.working.com/abc/info.php[/COLOR]](http://www.blackchrome.com.au/onlinedesign/networkinfo/dyomails.php)[COLOR=black][COLOR=#ff0000][COLOR=black]", onFinish);[/COLOR] [/COLOR]
[COLOR=black]function onFinish($success:Boolean, $results:Object, $xml:XML):Void {[/COLOR]
[COLOR=black]if ($success) {[/COLOR]
  tf.text = $results.email[0].value;
  com.text = $results.company[0].value;
  addrr.text = $results.company[0].value;
 
  var mclListener:Object = new Object();
  mclListener.onLoadStart = function(target_mc:MovieClip) {
  trace("onLoadStart");
  };
  mclListener.onLoadComplete = function(target_mc:MovieClip) {
    trace("onLoadComplete");
    };
    mclListener.onLoadInit = function(target_mc:MovieClip) {
    trace("onLoadInit");
    };
    var image_mcl:MovieClipLoader = new MovieClipLoader();
    image_mcl.addListener(mclListener);
    image_mcl.loadClip($results.image[0].value, image);
    }
    }
    gotoAndStop(5);
  }[/COLOR]
[COLOR=black]stop();[/COLOR]

[COLOR=#000000]Thanks in advance. [/COLOR][/COLOR]