ho un script che mi genera un testo casuale in lettere per poi scrivermi la parola ma non riesco a settare meno distanza tra le lettere! COme si fa ?

codice:
onClipEvent (load) {
	lettere = "abcdefghilmnopqrstuvxyzABCDEFGHILMNOPQRSTUVXYZ,.?!";
	scritta = "let people know that you are around";
	numlet = lettere.length;
	lett = new Array(numlet);
	for(i=0;i<numlet;i++)
		lett[i] = lettere.substr(i,1);
	numscrit = scritta.length;
	scrit = new Array(numscrit);
	for(i=0;i<numscrit;i++)
		scrit[i] = scritta.substr(i,1);
	intervallo = 1000; //intervallo prima della composizione della frase
	posx = 20;
	for (i=0; i<numscrit; i++) {
		_root.attachMovie("mc_testo", "testo"+i, 10+i);
		_root["testo"+i]._x = posx;
		_root["testo"+i]._y = 150;
		_root["testo"+i].testo = lett[random(numlet)];
		posx += _root["testo"+i]._width;
	}
	timer = getTimer();
	j = 0;
}
onClipEvent (enterFrame) {
	if (intervallo+timer>getTimer()) {
		for (i=j; i<numscrit; i++) {
			_root["testo"+i].testo = lett[random(numlet)];
		}
	} else {
		_root["testo"+j].testo = scrit[j];
		j++;
		timer = getTimer();
		intervallo = 50;
	}
}