2011-03-20 70 views
0

嘗試一些HTML添加到textarea的移動Flex 4.5中,但不斷收到錯誤:在HTML文本區星火

"1180: Call to a possibly undefined method StyleableTextField."

以下行:

StyleableTextField(txtMyText.textDisplay).htmlText = "sample <b>text</b>"; 
+0

請記住,因爲這是一個移動應用程序textFlow屬性似乎並不支持。 – SS44 2011-03-20 17:20:06

回答

1

的樣子:

MobileTextField(txtMyText.textDisplay).htmlText = "sample <b>text</b>"; 

作品。剛剛需要進口:

import spark.components.supportClasses.MobileTextField; 

讓它工作。

0

你能不能設置TextArea實例的htmlText屬性直接?

事情是這樣的:

myTextArea.htmlText = "sample <b>text</b>"; 

羅布

+0

觸發器: 通過引用靜態類型spark.components訪問可能未定義的屬性htmlText:TextArea – SS44 2011-03-20 17:19:33

+0

真棒,謝謝:) – robertp 2011-03-20 19:04:10