codice:
testo1 = "Macromedia Flash MX is the professional standard authoring tool for producing high-impact Web experiences."; 
testo2 = "Macromedia Flash MX movies are graphics, text, animation, and applications for Web sites."; 
testo3 = "Whether you are creating animated logos, Web site navigation controls, long-form animations, entire Flash Web sites, or Web applications, you'll find the power and flexibility of Flash ideal for your own creativity."; 

ypos = 0; 
for (i = 1; i < 4; i++) { 
	this.createEmptyMovieClip("ext" + i, i); 
	this["ext" + i].createTextField("txt", 1, 20, 0, 200, 5); 
	this["ext" + i].txt.border = true;
	this["ext" + i].txt.background = true;
	this["ext" + i].txt.wordWrap = true; 
	this["ext" + i].txt.autoSize = true; 
	this["ext" + i].txt.text = this["testo" + i]; 
	this["ext" + i]._y = ypos; 
	Hcampo = this["ext" + i].txt.textHeight+10; 
	ypos = ypos + Hcampo; 
}