Use appendChild method to add new child to the end of existing xml data : Insert : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » Insert »

 

Use appendChild method to add new child to the end of existing xml data


 

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

        var novel:XML = <BOOK ISBN="0000000000">
          <TITLE>ActionScript</TITLE>
          <AUTHOR>J, J</AUTHOR>
          <PUBLISHER>Books Ltd</PUBLISHER>
        </BOOK>
        
        novel.appendChild(<DESCRIPTION>A modern classic</DESCRIPTION>);
        
        trace(novel);

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo XML
» Insert