我正在尝试将图像输出到Flash ActionScript 2动态文本框中。
这可以通过将<img ... />
放入htmlText代码来实现。但我无法将图片置于包含<center>
... </center>
标记的行中。
任何人都可以帮我解决如何完成以下任务:
TEXT TEXT TEXT TEXT TEXT
IMG
TEXT TEXT TEXT TEXT TEXT
在ActionScript 2中的htmlText字段中。
答案 0 :(得分:0)
尝试使用带有id包装器的div的代码
<?xml version="1.0" encoding="utf-8"?>
<about title="Blog">
<title>
<![CDATA[]]>
</title>
<thumb></thumb>
<text>
<div id="wrapper" style="width: 500px;">
<p>04/19-2012 - Test with images...</p>
<p>This image is not centered, as it should be...</p>
<p>
<center>
<img src="/uploads/dmbtest.gif" alt="" width="210" height="100" />
</center>
</p>
<p>This is text after the image, which should be placed just below the image and not next to it :(</p>
<p>##################################################</p>
</div>
</text><optionalText><![CDATA[]]></optionalText></about>
工作正常