如何在不使用flashdevelop的情况下在ActionScript中显示图像(我使用IntelliJ IDEA)?我宁愿从网址上做到这一点,但嵌入也很好。
答案 0 :(得分:1)
这与“flashdevelop”或任何IDE无关。如果要从URL加载图像,请创建Loader变量并加载URLRequest。
var imageLoader:Loader = new Loader();
imageLoader.load(new URLRequest("IMAGE URL HERE"));
addChild(imageLoader);
答案 1 :(得分:0)
确定。我想我明白了。它看起来像你这样做:
[Embed(source = "../src/myImage.png")]
private var Bird:Class;
public function Main()
{
var img:Bitmap = new Bird();
img.width=10;
img.height=10;
addChild(img);
}