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:
en el fichero txt tengo un &testic=oka = 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"; } }
no se por que no me funciona, ya no se que mas mirar.
alguien sabe?
gracias