можно
примерно так
в первый кадр вставь этот Action

Код:
color = 0x00ff00;
_root.onEnterFrame = function() {
_root.createTextField("text", 1, 200, 20, 100, 20);
_root.text.border = 1;
f = new TextFormat();
f.color = color;
_root.text.text = "text";
_root.text.setTextFormat(f);
};
_root.createEmptyMovieClip("but", 0);
_root.but.lineStyle(0, 0x000000, 100);
_root.but.beginFill(0x999999, 100);
_root.but.moveTo(0, 0);
_root.but.lineTo(100, 0);
_root.but.lineTo(100, 100);
_root.but.lineTo(0, 100);
_root.but.lineTo(0, 0);
_root.but.onRollOver = function() {
color = 0xFF0000;
};
_root.but.onRollOut = function() {
color = 0x00FF00;
};