html
  • flex
  • fonts
  • htmltext
  • 2010-04-11 72 views 0 likes 
    0

    我想在flex textArea中創建文本突出顯示,但是它的htmlText不支持<font bgcolor='#FFFF00'> part of my text </font>,所以我正在尋找一種字體巫婆,與Courier新的相反,當我將其嵌入到閃存中時,並使用我獲得的顏色進行書寫突出效果爲我的那段文字,如我所輸入<font family="negativeOfCourier" color='#FFFF00'> part of my text </font>Courier新字體是否有負面影響?

    +0

    相反,我的意思是,背景應該是文字結束文本應該是背景 – Biroka 2010-04-11 17:46:26

    回答

    1

    <font style="font-family:courier;color:white;background-color:black;">white text goes here</font>

    注:我試圖將它張貼格式化的,但這樣做不會出現接受字體標籤。

    編輯:你可以去http://www.w3schools.com找到這個東西。

    1

    您應該使用StyleSheet。 例如:

    var theCSS:String = ".normaltext{color:#FFFF00;font-family:Courier}.highlightedtext{color:#FFFF00;font-family:Arial}"; 
    var theStyle:StyleSheet = new StyleSheet(); 
    theStyle.parseCSS(theCSS); 
    theTextArea.styleSheet = theStyle; 
    theTextArea.htmlText = '<span class="normaltext">Normal text here, and</span><span class="highlightedtext"> the highlighted text here</span>'; 
    
    相關問題