好的,我刚刚花了几个小时整理出来,但我已经让它在 Flash 和 Flex 中工作。
在 TextField 中显示图像
您可以将 DisplayObject 加载到 TextField<img />
标记中,包括 MovieClip、Sprite 和嵌入的图像。
闪存示例
简单的例子,所有代码都在主时间线上。
在舞台上创建一个动态的 TextField。给它一个有用的名字,我叫我txtImageTest
的。
调整txtImageTest
到合适的大小,例如 300x150px。
创建一个新的 MovieClip 元件并给它一个类名,例如imageClip1
。
在您的新剪辑中绘制一些内容或在其中放置嵌入的图像imageClip1
。
返回主时间轴,取消选择所有对象并在第一帧打开 Actionscript 编辑器。
在文本字段上打开多行和自动换行:
imageClip1.wordWrap = true;
imageClip1.multiline = true;
imageClip1.htmlText = "<p>You can include an image in your HTML text with the <img> tag.</p><p><img id='testImage' src='imageClip1' align='left' width='30' height='30' hspace='10' vspace='10'/>Here is text that follows the image. I'm extending the text by lengthening this sentence until it's long enough to show wrapping around the bottom of the image.</p>"
保存并测试您的电影。
弹性示例
由于我们不能像在 Flash 中那样在库中创建新的 MovieClip,因此我们需要创建一个执行相同任务的新类(如果您想在库中创建新剪辑,此方法也适用于 Flash) .
这是我的黑色三角形子弹类,名为 BlackArrow.as:
// Set the correct package for you class here.
package embed
{
import flash.display.Sprite;
import mx.core.BitmapAsset;
public class BlackArrow extends Sprite
{
// Embed the image you want to display here.
[Embed(source='assets/embed/triangleIcon_black.png')]
[Bindable]
private var TriangleImage:Class;
public function BlackArrow()
{
super();
// Instantiate the embedded image and add it to your display list.
var image:BitmapAsset = new TriangleImage();
addChild(image);
}
}
}
注意:不要扩展 Bitmap(在 Flash 中)或 BitmapAsset(在 Flex 中),因为它们在 TextField 中不能正确缩放或定位。选择 Sprite 或类似的东西。
下面是在 TextField 中显示此图像的类的示例:
<?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
width="100%" height="100%">
<mx:Script>
<![CDATA[
import embed.BlackArrow;
// You must include a variable declaration of the same type as your
// wrapper class, otherwise the class won't be compiled into
// the SWF and you will get an IOError.
private var img2:BlackArrow;
]]>
</mx:Script>
<mx:Text id="txtResults1" width="100%" height="100%">
<mx:htmlText>
<![CDATA[<p>You can include an image in your HTML text with the <img> tag.</p><p><img id='testImage' src='embed.BlackArrow' align='left' hspace='10' vspace='10'/>Here is text that follows the image. I'm extending the text by lengthening this sentence until it's long enough to show wrapping around the bottom of the image.</p>]]>
</mx:htmlText>
</mx:Text>
</mx:VBox>
请注意,我在src
图像标记的属性中使用了完全限定的类名。
最后的笔记