RichTextEditor 解决字体大小设置问题

用RichTextEditor来设置字体大小,当点击发送之后,字体又会回到原来大小的,原因是textArea的字体没有被设置,

那么如何来做这个问题呢:

我的解决办法这样的:

 

 

手动设置textArea的样式,每次改变fontSizeCombo的时候

inputtext.fontSizeCombo.addEventListener(DropdownEvent.CLOSE,closeComboHandler) ;

 

 

public function closeComboHandler(evt:DropdownEvent):void
{
     fontsizevalue = Number(inputtext.fontSizeCombo.selectedItem) ;
     inputtext.textArea.setStyle("fontSize",fontsizevalue) ;
     trace("dddddd") ;   
}

 

OK肯定能搞定的,如果搞不定,留言,我再细说!

你可能感兴趣的:(editor)