Hey...
I really want to be able to pass data via a Loader.contentLoaderInfo COMPLETED event. Since the event.target upon receipt seems not to have access to the Loader, what I want to do is something like...

Code:
class DLoader extends Loader {
   function DLoader() {
      super();
   }
   override function ***? {
      //create a dynamic version of the contentInfoLoader here//
      contentLoaderInfo=new DLoaderInfo(_request);//again, not sure how this should be structured//
   }
}
dynamic class DLoaderInfo extends LoaderInfo {
   function DLoaderInfo(request?) {
      super(request);
   }
}
Can anyone help me fill in the blanks...?