Add IOErrorEvent, HTTPStatusEvent, SecurityErrorEvent and Event.COMPLETE to URLLoader : URLLoader : Network Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Network » URLLoader »

 

Add IOErrorEvent, HTTPStatusEvent, SecurityErrorEvent and Event.COMPLETE to URLLoader


 
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 {
      trace"The data has successfully loaded" );
    }
}}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Network
» URLLoader