Change is made to the original document : XML variable : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » XML variable »

 

Change is made to the original document


 

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>;
          
        trace(novel);
        var children:XMLList = novel.*;
        trace(children);
        
        delete novel.PUBLISHER;
        trace(novel);  
        trace(children)
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo XML
» XML variable