SoFunction
Updated on 2025-04-02

flex actionScript read file sample code

flex actionScript read file sample code

Updated: July 24, 2014 16:47:02 Submission: whsnow
This section mainly introduces the implementation code of flex actionScript to read file. Friends who need it can refer to it
 import ;
 import ;
 import ;
 import ;
 
 public class TxtLoader
 {
 private var setTxt:Function = null;
 public function TxtLoader()
 {
 }
 
 public function loadTxt(fileName:String, setTxt:Function):void {
   = setTxt;
  var urlRequest:URLRequest = new URLRequest(fileName);
  var urlLoader:URLLoader = new URLLoader();
  (, complete);
  (urlRequest);
 }
 
 private function complete(event:Event):void {
  var urlLoader:URLLoader =  as URLLoader;
  (null, );
 }
 }

-----------------Called method-------------------------------------------------------------   

new TxtLoader().loadTxt('', function(txt:String):void { 

         ( txt); 

    }); 
  • actionScript
  • Read the file

Related Articles

  • Alternative solution to problem of flex not displaying GIF images

    The problem of flex not displaying GIF images is indeed a headache, but we can use some means to make it appear obediently. The specific implementation is as follows. Friends who need it can refer to it.
    2013-11-11
  • flex4 panel removes the title and sets the transparency effect code

    First: Remove the Panel title, and second: Setting transparency is a long-lasting statement. Everyone knows it, but let me mention it. Please read this article for details.
    2013-05-05
  • Switching sample code through RadioButton in Flex

    This article mainly introduces the sample code for switching through RadioButton in Flex. Friends who need it can refer to it
    2014-02-02
  • Flex sample code to traverse Object keys and values

    This section mainly introduces the specific implementation of Flex traversal Object keys and values. Friends who need it can refer to it
    2014-07-07
  • How to embed RadioButton in Flex4 DataGrid

    This article introduces the method of embedding RadioButton in Flex4 DataGrid. There is a good example below. Interested friends can refer to it.
    2013-12-12
  • In Flex, numerically format the value of a column in a table and add % to the percentage

    You need to format the value of a column in the table, multiply the value by 100, and retain two decimal places. Add "%" and the same example below to implement the following
    2014-10-10
  • Teach you step by step to use flex eclipse to integrate spring

    Flex is an efficient, free open source framework for building expressive web applications that leverage Adobe Flash Player and Adobe AIR to cross browsers, desktops, and operating systems. Let's study him carefully today
    2014-06-06
  • flex actionScript time processing adds back to the date after addition

    This article mainly introduces the date after adding and adding. If you need it, please refer to it.
    2014-07-07
  • flex export excel specific implementation

    The prerequisite for exporting excel with flex is that the plugin as3xls-1.0 is required. Here is a specific implementation for you.
    2014-01-01
  • Tips for loading GIF images with flex

    This article is mainly a code example of flex using GIFPlayer to load GIF images. Friends who need it can refer to it.
    2014-06-06

Latest Comments