Forum Moderators: open
"Whether in your onPress handler or LoadMovie, create a TextFormat
instance and assign it to the text field. Make sure you set all the
properties you want to set before setting the format. For example:
myButton.onPress=function() {
var myFormat=new TextFormat();
myFormat.font="Arial";
myFormat.color=0xFF0000;
this._parent.textField.setTextFormat(myFormat);
}"
Just though I'd share in case someone else ran into this. Thank Patrick at Adobe forums :) .
woodbury