Intendi che alcune scritte partono grandi, altre piccole, e poi tornano alla normalità?
In quel caso, basta modificare le dimensioni di partenza dando un fattore di scala random:

codice:
onClipEvent (load) {
	this.end = 100;
	this._xscale = this._yscale = Math.random() * 150;
	this.acc = 1.8;
	this.ine = 1.5;
}
onClipEvent (enterFrame) {
	this.dx = (this.dx + (this.end - this._xscale) / this.acc) / this.ine;
	this._xscale += this.dx;
	this._yscale = this._xscale;
}
onClipEvent(mouseMove){
	if(this.hitTest(_root._xmouse, _root._ymouse, true)){
		if(!this.sopra){
			this.sopra = true;
			this.end = 150;
		}
	} else {
		if(this.sopra){
			this.sopra = false;
			this.end = 100;
		}
	}
}