# Won't trace?

**URL:** https://forum.kirupa.com/t/wont-trace/258843
**Category:** Uncategorized
**Created:** [April 28, 2008, 8:35pm UTC](https://forum.kirupa.com/t/wont-trace/258843 "2008-04-28T20:35:44Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![bombdigiti](https://avatars.discourse-cdn.com/v4/letter/b/b5ac83/32.png) [@bombdigiti](https://forum.kirupa.com/u/bombdigiti)
#### Post date: [April 28, 2008, 8:35pm UTC](https://forum.kirupa.com/t/wont-trace/258843/1 "2008-04-28T20:35:44Z")

</div>

hey, im pulling in data from an external txt file created by php. I can’t get it to trace anything out… at all. It’s weird because its an example from the help area in flash… argh.  
Anyone have any ideas?

```auto

import flash.events.Event;
import flash.net.*;

var loader:URLLoader = new URLLoader(new URLRequest("http://localhost/media_gallery/loadinfo.php"));

function completeHandler(event:Event):void
{
    var myLoader2:URLLoader = URLLoader(event.target);
    var myVariables:URLVariables = new URLVariables(myLoader2.data);
    var galleryimageArray:Array = myVariables.galleryimages.split("|");
    trace(galleryimageArray);
}

```
