Basic Connectivity of Flash and XML

July 29, 2010, Flash, XML

In this article we will tell you about basic connection between flash and XML. It will show you what to add in the flash file in order to be able to read tags from an XML file and then use that data inside flash.


Follow below mentioned steps

Step1: Make XML file

The XML file you will make look like this, you will create file called sample.xml and paste this code in that.

1
2
3
4
5
6
7
8
<ol>
  <li><strong><?xml</strong> version="1.0" encoding= "UTF-8" <strong>?></strong></li>
  <li><strong><items></strong></li>
  <li>  <strong><item</strong> item_name="IPhone" price="25.00"<strong>></product></strong></li>
  <li>  <strong><item</strong> item_name="HTC" price="10.00"<strong>></product></strong></li>
  <li>  <strong><item</strong> item_name="Nokia" price="50.00"<strong>></product></strong></li>
  <li><strong></items></strong></li>
</ol>

In the above XML file the "items" are called XML tags and "item_name" and "price" are called attributes. 
"Items" is the first child of the XML file and the lines inside are child 0,1,2 of the first child.
To get the value "IPhone" you have to write this in ActionScript:
xmlData.firstChild.childNodes[0].attributes.item_name
To get the value "HTC" use this code in ActionScript:
xmlData.firstChild.childNodes[1].attributes.item_name

Step2: Make flash file

Now you have to need create 6 text fields where data item names and item price will be written but this is not important that which format will be use to display this data, in this article we just only trying to explain that how to read the XML data in flash
Now the contents in the flash file…. open Macromedia Flash, create a blank file, click on first key frame, open Actions panel and paste this code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<ol>
  <li><em>// define  an XML object called "xmlData"</em></li>
  <li>xmlData = <strong>new</strong> XML();</li>
  <li><em>// load  data from an external XML file into "xmlData" object</em></li>
  <li>xmlData.load("sample.xml");</li>
  <li><em>// what to  do when data is loaded ... Call a function ("my_function" in this  case)</em></li>
  <li>xmlData.onLoad = my_function;</li>
  <li><em>// ignore  "white spaces", text nodes that only contain white space are  discarded </em></li>
  <li>xmlData.ignoreWhite = 1;</li>
  <li><em>// function  contents</em></li>
  <li><strong>function</strong> my_function() { </li>
  <li>  <em>// take the data from the XML lines (line 0,1,2) and place that  data inside text fields</em></li>
  <li>  text_field_1.text = xmlData.firstChild.childNodes[0].attributes.item_name;</li>
  <li>  text_field_2.text = xmlData.firstChild.childNodes[1].attributes.item_name;</li>
  <li>  text_field_3.text = xmlData.firstChild.childNodes[2].attributes.item_name;</li>
  <li>  <em>//</em></li>
  <li>  text_field_a.text = xmlData.firstChild.childNodes[0].attributes.price;</li>
  <li>  text_field_b.text = xmlData.firstChild.childNodes[1].attributes.price;</li>
  <li>  text_field_c.text = xmlData.firstChild.childNodes[2].attributes.price;</li>
  <li>} </li>
</ol>

As you may see, the above code loads data from an external XML file called "sample.xml" and places the data from the XML tags to text fields inside the flash file.
For example: to access the product name on first line ("IPhone") the ActionScript line inside the flash file will be like this:

xmlData.firstChild.childNodes[0].attributes.item_name

"xmlData" is the name given to the new XML object at beginning of ActionScript code; the next code are the levels, it reads from first level ("firstChild") this is "products" tag, from "products" tags it loads first child ("childNodes[0]") and the attribute name is "item_name".
So the above line will return the value "IPhone".
As you can see counting starts from zero when counting XML lines. 

Item_name, price and XML tags are defined by user, in an XML file you can name the tags and the attributes as you wish, the tags are not predefined like in HTML language.

Preview




, ,


Hello there! If you are new here, you might want to subscribe to the RSS feed for updates on this topic, or follow us on Twitter. Get promotion with Hypesol.
Name: Email:


Subscribe

Subscribe to our e-mail newsletter to receive updates.

5 Responses to “Basic Connectivity of Flash and XML”

  1. Tutorial Lounge Says:

    really useful techniques you sharing. thanks

    Reply

  2. w3promoter Says:

    Great information you are sharing.. Thanks keep up the good work.

    Reply

  3. cna training Says:

    Keep posting stuff like this i really like it

    Reply

  4. WP Themes Says:

    Genial dispatch and this post helped me alot in my college assignement. Say thank you you for your information.

    Reply

  5. Seidu Says:

    I am new to actionscript but pasting your code only gave me 1120:Access to undefined property xmlData at runtime.

    Reply

Leave a Reply

Get Adobe Flash player