2010-02-26 44 views
2

我想在flex中使用代碼突出顯示創建一個文本區域。有沒有一個先進的文字區女巫支持真正的CSS。例如:是否有textArea for flex,它支持帶有CSS格式的html-text?

myHtmltext:String = '<span class="keyword"> #include </span>'; 

myTextArea:TextArea = new TextArea(); 

myTextArea.htmlText = myHtmltext; 
+2

http://stackoverflow.com/questions/366528/syntax-highlighting-library-in-actionscript – 2010-02-26 18:13:00

回答

2

您必須擴展TextArea以使其通過StyleManager接受樣式。有關更多信息,請參閱this discussion。它討論了文本組件,但原理是一樣的。

+1

我試圖突出顯示該討論中提到的文本...通過改變文本顏色代碼但我想創建」主題「,所以CSS將是真正的解決方案。 – Biroka 2010-02-26 18:43:46

相關問題