Format textfield colors

Hi All,

I am trying to format a textField like so:

		  
  trace(mainButts.labelClip.label.textColor);
 format = new TextFormat();
 format.color = 0xDA4289;
 mainButts.labelClip.label.textColor = 0xDA4289;
 //mainButts.labelClip.label.setTextFormat(format);
 trace(mainButts.labelClip.label.textColor);
  

altough the color has changed according to the difference between the results of the first and the second trace the color did not actually change in the flash movie when played.

the setTextFormat was replace with setting it directly since this did not even lead to a reported change of the textColor.

the textfield is dynamically attached to a movie and is filled with text before i change the color.

Any suggestions?