Wielkość czcionki w ActionScript

0

Witam, mam taki problem: jak zmienić w poniższym kodzie wielkość czcionki? Zaznaczam, że jestem początkujący w AS...

i = 0;
h_space = 10;
x = 150;
y = 50;
tekst = "jeszcze jakis inny tekst";
this.onEnterFrame = function() {
	this.attachMovie("literka", "lt"+i, i);
	var clip = this["lt"+i];
	clip.txt = tekst.substr(i, 1);
	clip.x = i*h_space+x;
	clip.y = y;
	clip._x = clip.x+(random(100)-50);
	clip._y = clip.y+(random(100)-50);
	clip._xscale = random(700)+100;
	clip._yscale = random(700)+100;
	clip._rotation = random(220)+50;
	clip.speed = 4;
	clip._alpha = 0;
	clip.onEnterFrame = function() {
		var sa = (100-this._alpha)/this.speed;
		var sx = (this._x-this.x)/this.speed;
		var sy = (this._y-this.y)/this.speed;
		var ssx = (this._xscale-100)/this.speed;
		var ssy = (this._yscale-100)/this.speed;
		var sr = (this._rotation)/this.speed;
		this._alpha += sa;
		this._x -= sx;
		this._y -= sy;
		this._xscale -= ssx;
		this._yscale -= ssy;
		this._rotation -= sr;
	};
	if (i == tekst.length) {
		delete i;
		this.onEnterFrame = undefined;
	}
	i++;
};

Liczę na Waszą pomoc! Dzięki

0

Widze, ze chyba malo tu ekspertów od ActionScript

1 użytkowników online, w tym zalogowanych: 0, gości: 1