package{ import flash.display.Sprite; public class Main extends Sprite{ public function Main(){ var example:XML = <example> <b /> <d /> <f /> </example>; example.appendChild(<g />); trace(example); example.prependChild(<a />); trace(example); example.insertChildAfter(example.b, <c />); trace(example); example.insertChildBefore(example.f, <e />); trace(example); } }}
Name (required)
email (will not be published) (required)
Website