Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to change the font size of Flash's TextArea component which is currently on the stage using AS3.

I tried linking a TextFormat object to the TextAera by its instance name, but I get this error:

Scene 1, Layer 'actions', Frame 1, Line 44  1061: Call to a possibly undefined method setTextFormat through a reference with static type fl.controls:TextArea.

Here is the AS3 code:

var myTextFormat:TextFormat = new TextFormat();

myTextFormat.font = "Arial";
myTextFormat.size = 10;
myTextFormat.color = 0xffffff;

my_textArea.setTextFormat(myTextFormat)
share|improve this question

1 Answer

up vote 0 down vote accepted

Try this snippet:

myTextArea.setStyle("textFormat", myTextAreaFormat);
share|improve this answer
Thanks for the answer, and it worked. However I would also like to know which class setStyle is associated with. I can find it within the TextArea or TextField documentation. Thanks – Human Nov 10 '12 at 20:29
According to the documentation 'setStyle' is inherited by the UIComponent class: help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/… – Nirazul Nov 11 '12 at 10:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.