XML:
<?xml version="1.0" encoding="utf-8"?>
<botones>
<item link="http://www.google.com.pe"/>
</botones>
AS2:
var myMenu:XML = new XML();
myMenu.ignoreWhite = true;
myMenu.load("mydata.xml");
linkBoton = new Array();
//textoBoton = new Array();
myMenu.onLoad = function() {
for (var i = 0; i<this.firstChild.childNodes.length; i++) {
// textoBoton[i] = this.firstChild.childNodes[i].attributes.name;
linkBoton[i] = this.firstChild.childNodes[i].attributes.link;
}
creaBtns(this.firstChild.childNodes.length);
};
function creaBtns(cuantosBotones) {
// var separacion = 0;
// $Yini = 85.7;
for (var i = 0; i<cuantosBotones; i++) {
this.attachMovie("boton", "boton"+i, this.swapDepths());
_root["boton"+i].link = linkBoton[i];
//_root["boton"+i].mytexto.text = textoBoton[i];
_root["boton"+i]._x = 300;
_root["boton"+i]._y = 300;
_root["boton"+i].onRelease = function() {
getURL(this.link, "blank");
//this.removeMovieClip();
};
}
}
El boton me carga y el enlace externo funciona, pero no logro que se borre una ves que avanzo o retrocedo de dicho punto. Muchas garcias