0

我在 Flex 中创建动态TextArea,我想动态更改它fontSize,但setStyle不起作用。

这是我的代码:

var textArea:TextArea = new TextArea();  
textArea.id = "txtCreaTaskAnalysis" +contatoreNumeroTextAreaCreaTaskAnalysis;  
textArea.left = 140;  
textArea.right = 45;  
textArea.horizontalCenter = 47;  
textArea.height = 110;  
textArea.y = posizioneYTextArea;  
var tfor:TextFormat = new TextFormat();  
tfor.size= 25 ;  
textArea.setStyle("textFormat",tfor);  
textArea.text = tfor.size.toString();  
addElement(textArea);

我在 a 中有这段代码buttonClickHandler,但fontSize没有改变。

请帮忙..

4

1 回答 1

0

尝试使用:

textArea.setStyle("fontSize",25);

我不认为 TextArea 有一种名为“textFormat”的样式。

于 2012-07-25T13:17:52.360 回答