0

Flash ActionScript 2 ダイナミック テキスト ボックスに画像を出力しようとしています。これは<img ... />、htmlText-code に入れることで機能します。<center>しかし、 ...</center>タグのある行の中央に画像を配置することはできません。

誰でも次のことを達成する方法について私を助けることができます:

テキスト テキスト テキスト テキスト テキスト テキスト

          IMG

テキスト テキスト テキスト テキスト テキスト テキスト

ActionScript 2 の htmlText フィールド内。

4

1 に答える 1

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>

正常に動作しています

于 2012-04-20T09:28:28.210 に答える