Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/07/2005, 12:36
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 3 meses
Puntos: 193
yo usaria LoadVars.

Código:
var load_lv:LoadVars = new LoadVars();
function init() {
	load_lv.onLoad = setText;
	load_lv.load("archivo.txt");
}
function setText() {
	if (this.miVariable.length) {
		_root.createTextField("mytext", 1, 0, 0, 300, 100);
		mytext.text = this.miVariable;
		mytext.multiline = true;
		mytext.wordWrap = true;
		mytext.background = true;
		mytext.backgroundColor = 10066329;
		mytext.border = true;
		mytext.textColor = 16777215;
	}
}
init();