我在xml中使用html来获取actionscript中的某些名称,并且;quot;
这是我的变量,我希望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 :(得分:0)
试试这个:
your_string = your_string.split(";quot;").join('"');