Use wild card and index to change the xml data value : Update : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » Update »

 

Use wild card and index to change the xml data value


 

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.*[1= novel.*[1+ <AUTHOR>D, V</AUTHOR>;
        
        trace(novel);

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo XML
» Update