Adding a new child after a specific existing child : insert « XML « Flash / Flex / ActionScript






Adding a new child after a specific existing child

 

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.insertChildAfter(novel.AUTHOR[0], <AUTHOR>D, V</AUTHOR>);
        
        trace(novel);
    }
  }
}

        








Related examples in the same category

1.Adding a new child after all existing children
2.Add a new child to the end of the existing xml data
3.Use appendChild method to add new child to the end of existing xml data
4.As an alternative to the insertChildAfter( ) approach (1)
5.As an alternative to the insertChildAfter( ) approach (2)
6.Adding a new child before a specific existing child