Trace loader data : URLLoader : Network Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Network » URLLoader »

 

Trace loader data


 
package {
  import flash.events.*;
  import flash.net.*;

  import flash.display.*;
  public class Main extends Sprite{

    public function Main(  ) {
      var loader:URLLoader = new URLLoader(  );

      loader.addEventListenerIOErrorEvent.IO_ERROR, handleIOError );
      loader.addEventListenerHTTPStatusEvent.HTTP_STATUS, handleHttpStatus );
      loader.addEventListenerSecurityErrorEvent.SECURITY_ERROR, handleSecurityError );
      loader.addEventListenerEvent.COMPLETE, handleComplete );

    //  loader.dataFormat = DataFormat.VARIABLES;

      loader.loadnew URLRequest"example.txt" ) );
    }

    function handleIOErrorevent:IOErrorEvent ):void {
      trace"Load failed: IO error: " + event.text )
    }

    function handleHttpStatusevent:HTTPStatusEvent ):void {
      trace"Load failed: HTTP Status = " + event.status );
    }

    function handleSecurityErrorevent:SecurityErrorEvent ):void {
      trace"Load failed: Security Error: " + event.text );
    }

    function handleCompleteevent:Event ):void {
      var loader:URLLoader = URLLoaderevent.target );
      
      for var property:String in loader.data ) {
        traceproperty + " = " + loader.data[property] );
      }
    }
}
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Network
» URLLoader