Menu

Showing posts with label XML. Show all posts
Showing posts with label XML. Show all posts

Tuesday, June 11, 2013

[AS3] วิธีการอ่านไฟล์ XML
[AS3] How to Read XML File

ขั้นแรก สร้างไฟล์ข้อความชื่อ test.xml แล้วใส่ข้อความตามด้านล่าง
First, create XML file named test.xml and add text as below
  1. <document>
  2.   <head>Header</head>
  3.   <body>
  4.     <content>
  5.       <no>1</no>
  6.       <text>Content 1</text>
  7.     </content>
  8.     <content>
  9.       <no>2</no>
  10.       <text>Content 2</text>
  11.     </content>
  12.   </body>
  13.   <foot>Footer</foot>
  14. </document>