Flash AS3.0讀取外部文字檔
用actionsctip 3讀取外部文字的方法。
- var request:URLRequest=new URLRequest("data.txt");
- var loader:URLLoader = new URLLoader();
- loader.load(request);
- loader.addEventListener(Event.COMPLETE,textLoad); //要加這個才讀的到
- function textLoad(e) {
- loadText.text=loader.data;
- }
留言