Report abuse

1
2
3
4
5
6
7
8
9
stop();
var xmlData:XML = new XML();
xmlData.ignoreWhite = true;
xmlData.load('var.xml');
xmlData.onLoad = function(success) {
	if (success) {
		trace(xmlData);
	}
}