estoy haciendo pruevas con loadvars()
esto me funciona bien:
Código:
a = new LoadVars();
a.load("dades.txt");
a.onLoad = function(ok) {
test = a.testic;
dades = a.dades;
if (ok) {
txt.text = dades;
txt_testic.text = test;
} else {
txt.text = "no se cargaron";
}
}
pero esto ya no me funciona bien
Código:
a = new LoadVars();
a.load("dades.txt");
a.onLoad = function() {
test = a.testic;
dades = a.dades;
if (test == "ok") {
txt.text = dades;
txt_testic.text = test;
} else {
txt.text = "no se cargaron";
}
}
en el fichero txt tengo un &testic=ok
no se por que no me funciona, ya no se que mas mirar.
alguien sabe?
gracias