ASD / Build-in Objects & Classes / MovieClip & Button
movieclip.prototype.write
6493 keer gelezen
(December 6, 2004)
| Waardering: | 8 keer gestemd |
|
3.6 van de 5 |
Laat text character voor character in een textfield schrijven.
Check www.jeroenwijering.com/?scr=8 voor een demo.
MovieClip.prototype.write = function(txt, nbr)
{
this.tmp = "";
this.i = 0;
this.onEnterFrame = function()
{
spd = 0;
while (spd < nbr)
{
this.tmp = this.tmp + txt.charAt(this.i);
this.i++;
spd++;
}
this.tf1.text = this.tmp;
this.tf2.text = this.tmp;
this.i >= txt.length ? delete this.onEnterFrame : null;
};
};
{
this.tmp = "";
this.i = 0;
this.onEnterFrame = function()
{
spd = 0;
while (spd < nbr)
{
this.tmp = this.tmp + txt.charAt(this.i);
this.i++;
spd++;
}
this.tf1.text = this.tmp;
this.tf2.text = this.tmp;
this.i >= txt.length ? delete this.onEnterFrame : null;
};
};



