Hi Guys, this is my question,
I’d tried to modify the content loaded to a dynamic text box using buttons to make loadText.load(“datosI.txt”);loadText.load(“datosII.txt”); but it keeps loading the same info to the texts boxes no matter what button i press.
Heres the code, should i change the trigger that sets the functions?
Inicio.onRelease
{
loadText = new loadVars();
loadText.load(“datos.txt”);
loadText.onLoad = function() {
contenido.text = this.contenido;
titulo.text = this.titulo;
subtitulo.text = this.subtitulo;
puntos.text = this.puntos;
};
}
ProBut.onRelease
{
loadPartIText = new loadVars();
loadPartIText.load(“partei.txt”);
loadPartIText.onLoad = function() {
contenido.text = this.contenido;
titulo.text = this.titulo;
subtitulo.text = this.subtitulo;
puntos.text = this.puntos;
};
}
Ltorre.