Add a new child to the end of the 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.*[novel.*.length( )-1] += <DESCRIPTION>A modern classic</DESCRIPTION>;
trace(novel);
}
}
}
Related examples in the same category