First, create text file named line2array.txt with add text below
google plus
internet explorer
html5
ต่อมา ใส่โค้ดด้านล่างนี้ในสคริปต์ของคุณ
Next, insert the code below to your script
- var myArrayOfLines:Array;
- function loadLine2Array(){
- var myTextLoader:URLLoader = new URLLoader();
- myTextLoader.addEventListener(Event.COMPLETE, onLoadedLine2Array);
- myTextLoader.load(new URLRequest("line2array.txt"));
- }
- function onLoadedLine2Array(e:Event):void {
- myArrayOfLines= e.target.data.split(/\r\n/);
- trace(myArrayOfLines.length);
- for(var i:int=0; i<myArrayOfLines.length; i++){
- trace(myArrayOfLines[i]);
- }
- }
At line 5, Text is loaded from line2array.txt
บรรทัดที่ 8, ข้อความถูกแบ่งตามการขึ้นบบรทัดใหม่และเก็บใส่อาเรย์
At line 8, Text is split by new line symbol and stored in array
บรรทัดที่ 9-12, ทำการแสดงค่าความยาวอาเรย์ที่ได้และค่าที่เก็บอยู่ในอาเรย์แต่ละช่อง
At line 9-12, The length of array and each value in array are printed
เรียกฟังก์ชั่น loadVariable จากคอนสตรัคเตอร์ของคลาส แล้วกดปุ่ม Ctrl+Enter เพื่อรัน
Call loadVariable from your class constructor then press Ctrl+Enter to run
หน้าต่าง output จะแสดงข้อความตามด้านล่าง
The output window will show text as
google plus
internet explorer
html5
หมายเหตุ: อย่าลืม import flash.net.*;
Notice: you must import flash.net.*;
No comments:
Post a Comment