Sí, se puede hacer, debes cargar un archivo XML externo. Este XML debe deter una estructura determinada por ti. Las formas de estructurarlo pueden ser muchas, tú debes elegir la que más te guste: Aquí te dejo un código actionscript que sirve para cargar archivos XML externos:
Código actionscript:
Ver original// Create a new XML object.
var miArchivoExterno:XML = new XML();
// Set the ignoreWhite property to true (default value is false).
miArchivoExterno.ignoreWhite = true;
// After loading is complete, trace the XML object.
miArchivoExterno.onLoad = function(success) {
trace(miArchivoExterno);
};
// Load the XML into the flooring object.
miArchivoExterno.load("miArchivoExterno.xml");
Saludos