Accessing the Target Object : URLLoader « Network « Flash / Flex / ActionScript

Home
Flash / Flex / ActionScript
1.Animation
2.Array
3.Class
4.Data Type
5.Development
6.Function
7.Graphics
8.Language
9.Network
10.Regular Expressions
11.Statement
12.String
13.TextField
14.XML
Flash / Flex / ActionScript » Network » URLLoader 
Accessing the Target Object
 

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

  public class Main extends Sprite {
    public function Main(  ) {
      var urlLoader:URLLoader = new URLLoader(  );
      urlLoader.addEventListener(Event.COMPLETE, completeListener);
      urlLoader.load(new URLRequest("someFile.txt"));
    }

    private function completeListener (e:Event):void {
      trace("Load complete");
    }
  }
}

        
Related examples in the same category
1.Loading XML
2.Loading Images
3.Add IOErrorEvent, HTTPStatusEvent, SecurityErrorEvent and Event.COMPLETE to URLLoader
4.Trace loader data
5.Listen to the URLLoader complete event
6.Loading a Block of Text (Including HTML and XML)
7.Checking Load Progress
8.Understanding Flash Player Security
9.Load a picture
10.Display LoadBar
11.Load an XML file
12.Events and Event Handling for URLLoader
13.Event Listener Registration Examples
14.URLLoader Complete event
15.Accessing the Object That Registered the Listener
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.