Hola!
Muchas gracias por tu ayuda, he podido avanzar algo, pero como mi estructura es un poco distinta a la tuya me he vuelto a estancar un poquito
Verás, tengo un frame que llama al xml y carga el movieclip que contiene las miniaturas
Código :
function generar(){
acomentarios=texto.firstChild.childNodes;
totalc = acomentarios.length;
trace(totalc);
final = totalc_visible;
attachMovie("mcPunto0","punto",this.getNextHighestDepth());
this["punto"].imagen1 = texto.firstChild.childNodes[0].attributes.imgthumb;
this["punto"].imagen2 = texto.firstChild.childNodes[1].attributes.imgthumb;
this["punto"].imagen3 = texto.firstChild.childNodes[2].attributes.imgthumb;
this["punto"].grande1 = texto.firstChild.childNodes[0].attributes.imagen;
this["punto"].grande2 = texto.firstChild.childNodes[1].attributes.imagen;
this["punto"].grande3 = texto.firstChild.childNodes[2].attributes.imagen;
Luego, en el mc, están los botones de las miniaturas con este código:
Código :
on(release){
this.fotocontenedor.loadMovie(grande1);
var _id:Number=1;
trace(_id);
}
Y finalmente en el botón sobre la foto grande he puesto esto:
Código :
on(release){
_id = _id+1;
trace(_id);
var fotogrande = "grande"+_id;
trace (fotogrande);
this.fotocontenedor.loadMovie(fotogrande);
}
Con el trace (fotogrande) me devuelve (por ejemplo): grande2, pero lo devuelve como una cadena, no lo reconoce como el valor de la variable declarada en el primer código.
¿Alguna sugerencia?
Muchísimas gracias por vuestra ayuda.