Wednesday, July 28, 2010

Basic Connectivity of Flash and 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.


{code type=codetype}

  1. <?xml version="1.0" encoding= "UTF-8" ?>

  2. <items>

  3.   <item item_name="IPhone" price="25.00"></product>

  4.   <item item_name="HTC" price="10.00"></product>

  5.   <item item_name="Nokia" price="50.00"></product>

  6. </items>


{/code}

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:


{code type=codetype}

  1. // define an XML object called "xmlData"

  2. xmlData = new XML();

  3. // load data from an external XML file into "xmlData" object

  4. xmlData.load("sample.xml");

  5. // what to do when data is loaded ... Call a function ("my_function" in this case)

  6. xmlData.onLoad = my_function;

  7. // ignore "white spaces", text nodes that only contain white space are discarded

  8. xmlData.ignoreWhite = 1;

  9. // function contents

  10. function my_function() {

  11.   // take the data from the XML lines (line 0,1,2) and place that data inside text fields

  12.   text_field_1.text = xmlData.firstChild.childNodes[0].attributes.item_name;

  13.   text_field_2.text = xmlData.firstChild.childNodes[1].attributes.item_name;

  14.   text_field_3.text = xmlData.firstChild.childNodes[2].attributes.item_name;

  15.   //

  16.   text_field_a.text = xmlData.firstChild.childNodes[0].attributes.price;

  17.   text_field_b.text = xmlData.firstChild.childNodes[1].attributes.price;

  18.   text_field_c.text = xmlData.firstChild.childNodes[2].attributes.price;

  19. }


{/code}

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


5 comments:

  1. really useful techniques you sharing. thanks

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

    ReplyDelete
  3. Keep posting stuff like this i really like it

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

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

    ReplyDelete