Хорошо, я нашел решение: -)
public class MyButton extends Button
{
public function MyButton()
{
super();
}
override protected function measure():void
{
super.measure();
this.width = this.measuredWidth;
}
}
Теперь моя кнопка всегда правильно изменяет размер (ширину).
Спасибо всем
Anthony