2011-10-09 54 views
0

我在xml中使用html作爲actionscript中的一些名稱,並且有;quot;Actionscript 2如何將文本讀取爲html而不是普通文本?

這裏是我的變量,我希望actionscript將名稱讀作html。而不是普通的文字。

var field:TextField = currItem.createH3Black(0, 0, 180, 10, h3Size, h3Leading, font, "Left", _root.white, currItem.name.toUpperCase(), "textItem"); 

我該如何讓動作腳本以currItem.name.toUpperCase()作爲html?所以這個名字顯示爲HTM ""。相反,在這裏展示;quot;

更新的是完整的源代碼:http://pastie.org/2666913

+0

你的意思是要替換'; QUOT;'和'「' – Marty

+0

是?我想這樣做:) –

回答

0

試試這個:

your_string = your_string.split(";quot;").join('"'); 
相關問題