我正在尝试对齐我的 .swf 闪存中的文本区域。直接从 xml 我提到我有 actionscript 2.0
我的代码是这样的:
<?xml version="1.0" encoding="iso-8859-1"?><content>
<!-- general vars -->
<section name="settings">
<item name="textSelectable">true</item>
<item name="copyright"><![CDATA[SICURO © 2013 | <font color="#ffffff"><a href="asfunction:_root.more_click_func, privacyPolicy"> PRIVACY POLICY</a></font>
]]></item>
<item name="companyName"><![CDATA[SICURO<font color="#ff0000">INVEST</font>
]]></item>
<item name="slogan"><![CDATA[Youre SECURITY]]></item>
<image imageUrl="_logo.png"/>
</section></content>
如何编辑companyName
以直接从 xml 文件对齐中心?
知道如何编辑吗?在我的 Flash 文档中看起来真的很难看。我在 Flash CS5 中看到了动作。
function getCompanyName(textObj){
textObj.htmlText = getSettingsValue(mainObj, "companyName", "item");
textSelectable(textObj);} // End of the functionfunction getSlogan(textObj){
textObj.htmlText = getSettingsValue(mainObj, "slogan", "item");
textSelectable(textObj);} // End of the function
这是我应该编辑什么?