Bueno, aquí está el código completo por si alguien lo necesita
Código:
var formato:TextFormat = new TextFormat();
formato.color = 0xFF0000;
var formato2:TextFormat = new TextFormat();
formato2.color = 0x000000;
////////
for (i=1; i<=10; i++) {
boton_ref = attachMovie('boton', 'btn'+i, i, {_x:i*20});
boton_ref.texto.text = i;
boton_ref.ir_a = i;
boton_ref.onRollOver = function() {
//acciones
this.texto.setTextFormat(formato);
};
boton_ref.onRollOut = function() {
this.texto.setTextFormat(formato2);
};
boton_ref.onPress = function() {
//acciones
};
}
Muchas gracias luistar !!