Comunidad de diseño web y desarrollo en internet online

No puedo borrar un boton traido desde la libreria

Citar            
MensajeEscrito el 20 Nov 2015 04:19 pm
Buen día a todos, me pidieron que en un flash tenga un boton con un link externo con xml. Viendo varios post encontre un codigo que lo logro:

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

Por Nicolas Alejandro

0 de clabLevel



 

chrome
Citar            
MensajeEscrito el 20 Nov 2015 06:49 pm
Uff, hay que hacer historia para acordarse de AS2, pero sería algo asi

Código ActionScript :

for (var i = 0; i<cuantosBotones; i++) {
   this.removeMovieClip("boton"+i);
}


Jorge

Por solisarg

BOFH

13669 de clabLevel

4 tutoriales
5 articulos

Genero:Masculino   Bastard Operators From Hell Premio_Secretos

Argentina

chrome

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.