file_xml.xml:

codice:
<info>
	<pic src="pic00.jpg" x="10" y="10" a="100" b="100" top="2" left="5" right="1" />
	<pic src="pic01.jpg" x="10" y="10" a="100" b="100" top="2" left="5" right="1" />
</info>
Flash:

codice:
dati_xml = new XML();
dati_xml.ignoreWhite = true;
dati_xml.path = this;
dati_xml.onLoad = function(success)
{
	if(success){
		var nodes = this.firstChild.childNodes;
		for(var i = 0; i < nodes.length; i++){
			this.path["my_mc" + i].dati = nodes[i].attributes;
			this.path["my_mc" + i].onPress = function()
			{
				var halter = _root.createEmptyMovieClip("h",1);
				var d = this.dati;
				halter.ladebild(d.src,d.x,d.y,d.a,d.b,d.top,d.left,d.right); 
			};
		}
	} else {
		trace("FILE XML NOT FOUND");
	}
};
dati_xml.load("file_xml.xml");