http://www.w3schools.com/xml/note.xmlのようなインターネット上に xml ファイルがあります。actionscript でこの xml ファイルを読み取ることができます。しかし、この xml を変更したいので、xml ノードを追加するか、xml ノードを削除します。 .
例えば:
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
XML メモのノードに追加したい
<example>mynodecontent</example>
後で、xml ファイルの次の XML のように変更したい
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
<example>mynodecontent</example>
</note>
出来ますか?