我有一个 Flash 电影,它使用一个简单的函数从 XML 文档中读取其源代码:
nav_text.text = navText;
使用 nav_text 作为动态文本实例(将呈现文本作为选定的 HTML),并将 navText 作为定义的变量。
在 XML 文档中,如果我写
<navigation
text="Please use the arrows either side of the picture to navigate through this slide show."
/>
然后 SWF 影片将完全按照所写的方式显示文本。但是,如果 XML 文档写成:
<navigation
text="<i>Please use the arrows either side of the picture to navigate through this slide show.</i>"
/>
然后 SWF 只是在文本框中显示“未定义”。
有什么想法我可能做错了吗?