
Код:
var art:Array = new Array("txt_0", "txt_1", "txt_2", "txt_3", "txt_4");
function Over() {
this.t.textColor = 0xFF0000;
}
function Out() {
this.t.textColor = 0x0000FF;
}
for (j=0; j<art.length; j++) {
_root["butt_"+j].t= _root["txt_"+j];
_root["butt_"+j].onRollOver = Over;
_root["butt_"+j].onRollOut = Out;
}