# XML problem

**URL:** https://forum.kirupa.com/t/xml-problem/298728
**Category:** Uncategorized
**Created:** [October 23, 2009, 5:57pm UTC](https://forum.kirupa.com/t/xml-problem/298728 "2009-10-23T17:57:45Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ron\_ron](https://avatars.discourse-cdn.com/v4/letter/r/f05b48/32.png) [@ron\_ron](https://forum.kirupa.com/u/ron_ron)
#### Post date: [October 23, 2009, 5:57pm UTC](https://forum.kirupa.com/t/xml-problem/298728/1 "2009-10-23T17:57:45Z")

</div>

[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]

```auto

[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]
