我想用flex的内置图像组件显示一个png。
有一个特定的x,y我想要显示这个图像。
我该怎么办?我很擅长弯曲。
答案 0 :(得分:1)
这很容易。请参阅positioning上的在线Adobe文档。
<mx:Image id="img0"
source="@Embed('logo.jpg')"
x="40" y="40"/>
当然,您可以选择不嵌入图片并直接从其他网址加载图片。我强烈建议您浏览API documentation。
始终参考文档:ImageControl
编辑:在AS3代码中使用Image控件
import mx.controls.Image;
public function SetImageProperties(url:string, x:int, y:int) : void {
var imageLoader:Loader = new Loader();
var image:URLRequest = new URLRequest(url);
imageLoader.load(image);
addChild (imageLoader);
imageLoader.x = x;
imageLoader.y = y;
}
对多个图像使用循环/ Repeater
组件。