Use insertChildBefore( ) and insertChildAfter( ) to modify an XML tree : Child : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » Child »

 

Use insertChildBefore( ) and insertChildAfter( ) to modify an XML tree


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var example:XML = <example/>;
        
        example.two = "";
        
        // Before the two element node, add a one element node
        example = example.insertChildBeforeexample.two, <one /> );
        
        // After the two element node, add a three element node
        example = example.insertChildAfterexample.two, <three /> );
        
        traceexample );
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo XML
» Child