Find data nested deep within an XML tree. : XML hierarchy « XML « Flash / Flex / ActionScript






Find data nested deep within an XML tree.

 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var myXML:XML = <alpha>
                            <beta>
                                <charlie delta="echo">foxtrot</charlie>
                            </beta>
                            <beta>
                                <golf hotel="india">juliet</golf>
                           </beta>
                        </alpha>;
        trace(myXML.beta[1].golf);           // Displays: juliet
        trace(myXML.beta[0].charlie.@delta); // Displays: echo

    }
  }
}

        








Related examples in the same category

1.Returns the root of an XML hierarchy, relative to a given child