The purpose of attribute high score in as3 and xml ?

Asked By 30 points N/A Posted on -
qa-featured

Dear Experts

I am very new and inexperienced in XML. Want to start working in XML. Yesterday a question just stuck in my mind and I couldn’t get answer from anyone around me, may be because they are not interested in XML and have no knowledge of it. I want to know the purpose of attribute high score in as3 and xml.

SHARE
Best Answer by Nelson Mili
Answered By 5 points N/A #197141

The purpose of attribute high score in as3 and xml ?

qa-featured

Hi Alicia,

This is my solution to your question. XML is a markup language used to carry data, not to display data. Is simply means that, XML acts like a bridge between your main platform and your data to be transferred in that platform. In relating to your question about XML and AS3, here are some public methods that can be used in XML – AS3.
 
attributes(attributeName:*):XMLList
Returns the XML value of the attribute that has the name matching the attributeName parameter.
attributes():XMLList
Returns a list of attribute values for the given XML object.
Remember that XML is just carrying data, it is not responsible for data display, it just serves as a connector.
Best Answer
Best Answer
Answered By 0 points N/A #197144

The purpose of attribute high score in as3 and xml ?

qa-featured

 Loading XML data using ActionScript 3.0

Using XML is one of the best ways for structuring external content in a logical format that is easy to understand, process, and update. This tutorial will teach you the basics on how to load and process XML in Flash using ActionScript 3.0. You are assumed to have basic knowledge of ActionScript in order to follow this tutorial.
 
This tutorial is for working with XML in ActionScript 3.0. If you would like to learn how to work with XML in ActionScript 1/2 then please review our previous Flash XML tutorial.Our tutorial will be divided into the following short sections.
 
What is XML?
Writing an XML File for Flash.
Loading XML in Flash.

Related Questions