Update xml data by using the dynamic property
package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
var novel:XML = <BOOK ISBN="0000000000">
<TITLE>ActionScript</TITLE> <!--Previous sibling-->
<AUTHOR>J, J</AUTHOR>
<PUBLISHER>Books Ltd</PUBLISHER> <!--Next sibling-->
</BOOK>;
trace(novel);
novel.AUTHOR = "H, E";
novel.PUBLISHER = "S";
trace(novel);
}
}
}
Related examples in the same category