Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/02/2009, 10:35
ivistar
 
Fecha de Ingreso: febrero-2009
Mensajes: 4
Antigüedad: 15 años, 9 meses
Puntos: 0
Respuesta: Dudas con un XML

Cita:
Iniciado por monoswim Ver Mensaje
El link se genera desde el flash, deberías de modificar tu película flash...
Saludos
No se bien como hacerlo pego el codigo action script del flash... Alguien me podria echar una mano para que mi enlace en la marquesina de imagenes abra en la misma ventana y no en nueva?

Código:
 
_global.photo = new Array();
_global.headline = new Array();
_global.body = new Array();
_global.link = new Array();
_global.teaser_xml = new XML();

teaser_xml.ignoreWhite = true;

teaser_xml.onLoad = function(success) {
	if (success) {
		for(n=0; n<teaser_xml.firstChild.childNodes.length; n++) {
			photo[n] = teaser_xml.firstChild.childNodes[n].childNodes[0].firstChild.nodeValue;
			headline[n] = teaser_xml.firstChild.childNodes[n].childNodes[1].firstChild.nodeValue;
			body[n] = teaser_xml.firstChild.childNodes[n].childNodes[2].firstChild.nodeValue;
			link[n] = teaser_xml.firstChild.childNodes[n].childNodes[3].firstChild.nodeValue;
		}
		_global.active = 0;
		_global.count = 0;
		_global.timer = 180;
		gotoAndPlay("xmlLoaded");
	}
	else {
		trace("Error Loading XML Document");
	}
};

teaser_xml.load("xml/teaser.xml");