Problem
Need load text from *.txt file.
Solution
Use URLRequest and URLLoader. Also using text and data methods.
Detailed explanation
var myTextObject:URLRequest=new URLRequest("my_content.txt");
var myLoaderObject:URLLoader = new URLLoader();
myLoaderObject.addEventListener(Event.COMPLETE,
myContentWasLoaded);
myLoaderObject.load(myTextObject);
function myContentWasLoaded(e:Event):void {
myContent_txt.text=myLoaderObject.data;
}

An example is in the source in the attached files.
Source:
loading_content
Thank you for reading.
