Cita:
Iniciado por monoswim 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");