Ciao a tutti
Ho un problema, non so come creare una funzione che quando uno clicca su un determinato testo caricato dinamicamente mi faccia un clip.loadMovie(continua.swf)
Come ho riportato di seguito, a fronte del testo che voglio dare la funzione ho scritto "....continua", ma ora non so dove e come creare la funzione
funzione
onClipEvent (load) {
this.stop();
mio_xml = new XML();
mio_xml.path = this;
mio_xml.ignoreWhite = true;
mio_xml.onLoad = function(success)
{
if(success){
var t1 = "";
var t2 = "";
var t3 = "<font color='#F59E65'>";
var t4 = "</font>";
var nodes = this.firstChild.childNodes;
for(var i = 0; i < nodes.length; i++){
var titolo = nodes[i].attributes.titolo;
var regista = nodes[i].attributes.regista;
this.path.testo += t1 + titolo + t2 + "
";
this.path.testo += regista + t3 + "....continua" + t4 + "
"
this.path.testo += "_________________________________________________ ";
this.path.testo +="
";
this.path.testo +="
";
}
} else {
this.path.testo = "caricamento errato";
}
this.path.nextFrame();
};
mio_xml.load("file3.xml");
}
spero che qualcuno mi possa aiutare.
Grazie, ciao.