Adding Text Nodes to an XML Object : Bracket syntax : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » Bracket syntax »

 

Adding Text Nodes to an XML Object


 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var example:XML = <example/>;
        
        example.firstname = "Darron";
        // Create a text node from a number
        example.number = 24.9;
        // Create a text node from a boolean
        example.boolean true;
        
        // Create a text node from an array
        example.abc = ["a", undefined, "b""c", null, 7false];
        
        traceexample );
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo XML
» Bracket syntax