| Arquivo: mytext.txt |
Loading External Text |
| Arquivo: teste.fla |
| Actionscript - F9 |
var myTextLoader:URLLoader = new URLLoader();
myTextLoader.addEventListener(Event.COMPLETE, onLoaded);
myTextLoader.load(new URLRequest("mytext.txt"));
function onLoaded(e:Event):void {
trace(e.target.data);
} |