在 Flash 应用程序中将 XML 文件中的 CDATA 文本居中
这是一个简单的问题:如何将要从 XML 文件加载到 CDATA 标记内的文本居中到我的 .swf 中?
我在标签和 text-align:center divs 方面尝试过的所有方法都不起作用。是否可以在不编辑 .fla 的情况下完成此操作?
谢谢。
Here's an easy one: how can I center text that I'm loading inside CDATA tags from an XML file into my .swf?
Everything I've tried in terms of tags and text-align:center divs hasn't worked. Is this possible to do without editing the .fla?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用样式表和 HTML 文本,
text-align:center
确实应该可以正常工作,但不支持。您可以使用
和
来指定样式类等。查看 TextField#htmlText 的 AS3 文档 查看 ActionScript 中所有支持的 HTML 标记的列表。
text-align:center
really should work fine if you use style sheets and HTML text, but<div>
is not supported. You can use<p>
and<span>
to specify your style classes, among others. Check out the AS3 doc for TextField#htmlText for a list of all supported HTML tags in ActionScript.感谢上面的输入 - 我可以理解这种情况的语义,但是最简单的方法是:
Thanks for the input above - I can appreciate the semantics of the situation, however the simplest way to do this turned out to be: