Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6856077
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:50:20+00:00 2026-05-27T01:50:20+00:00

Folks, I have the following xml in ActionScript. var xml:XML = <Top> <Component> <type>Button</type>

  • 0

Folks,

I have the following xml in ActionScript.

var xml:XML = <Top>
                <Component>
                   <type>Button</type>
                   <id></id>
                   <width>50</width>
                   <height>20</height>
                   <x>0</x>
                   <y>0</y>
                </Component>
                <Component>
                   <type>Label</type>
                   <id></id>
                   <width>30</width>
                   <height>10</height>
                   <x>0</x>
                   <y>0</y>
                </Component>
             </Top>;

Now, I want to read/parse this xml string and then generate Flex controls (i.e Buttons, Label) according to their respective properties.

How to do that ?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T01:50:21+00:00Added an answer on May 27, 2026 at 1:50 am
    import flash.xml.XMLDocument;
    import mx.rpc.xml.SimpleXMLDecoder;
    public static function xmlToObject(x:XML):Object{
        var xmlStr:String = x.toString();
        var xmlDoc:XMLDocument = new XMLDocument(xmlStr);
        xmlDoc.ignoreWhite=true;
        var decoder:SimpleXMLDecoder = new SimpleXMLDecoder(true);
        var resultObj:Object = decoder.decodeXML(xmlDoc);
         return resultObj;
    }
    

    I use this code to convert xml to Objects. Then it is REALLY simple to use the xml.

    For example, your xml would look like:

    var xml:XML = <Top>
                    <Component>
                       <type>Button</type>
                       <id></id>
                       <width>50</width>
                       <height>20</height>
                       <x>0</x>
                       <y>0</y>
                    </Component>
                    <Component>
                       <type>Label</type>
                       <id></id>
                       <width>30</width>
                       <height>10</height>
                       <x>0</x>
                       <y>0</y>
                    </Component>
                 </Top>;
    

    and

    var o:Object=xmlToObject(xml);
    
    var top:Object=o.Top;
    var componentArrayC:ArrayCollection=top.Component;
    for each(var cmp:Object in componentArrayC) {
        //You would have these properties:
        cmp.type;
        cmp.id;
        cmp.width;
        cmp.height;
        cmp.x;
        cmp.y;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hej folks, I'm currently completely stuck with the following and don't even have the
Hello folks :) I have a quick question - For the following NSMutableArray: NSMutableArray
Folks, I have ASP.NET MVC 3 Application and I have the following JQuery script
Hi folks I have the following error on line 11 in this controller code
I have xml that essentialy looks like the following (my actual .xml is a
I have the following situation and I'm expecting some expert advise from SO folks.
Folks, i have the following problem. My website uses an iframe to select an
Folks, Let's say that I have the following situation: <div class=outer> <div> <span> <ul>
Hey folks, I have the following piece of code from C++. for (int i=0;
Hi folks I have a block of text which i want to split in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.