package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
var movieList:XML =
My favorite movies
Titus
1999
J T
Rushmore
1998
W A
Hall
1977
Woody Allen
;
var anotherMovie:XML =
Tiger
1982
S L
;
This may be the simplest way to add data to an XML structure.
movieList.movie += anotherMovie;
trace(movieList);
}
}
}