Loading a Block of Text (Including HTML and XML) : 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 




Loading a Block of Text (Including HTML and XML)
 
package {
  import flash.display.*;
  import flash.text.*;
  import flash.events.*
  import flash.net.*;
  
  public class Main extends Sprite {
    private var _output:TextField = new TextField( );
    
    public function Main(  ) {
      _output.width = stage.stageWidth;
      _output.height = stage.stageHeight;
      
      addChild_output );    
      
      var loader:URLLoader = new URLLoader(  );
      
//      loader.dataFormat = DataFormat.TEXT;
      
      loader.addEventListenerEvent.COMPLETE, handleComplete );
      
      loader.loadnew URLRequest"example.html" ) );
    }
    
    private function handleCompleteevent:Event ):void {
      var loader:URLLoader = URLLoaderevent.target );
      
      _output.htmlText = loader.data;
    }
  }
}

        














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.Checking Load Progress
7.Understanding Flash Player Security
8.Load a picture
9.Display LoadBar
10.Load an XML file
11.Events and Event Handling for URLLoader
12.Event Listener Registration Examples
13.Accessing the Target Object
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.