Flashdevelop を使用して、スターリング プロジェクトに aa jpg を追加することができました。
[Embed(source = "../../../../lib/table_org_img_retouched_900.png")]
private static const Graphic:Class;
...
// create a Bitmap object out of the embedded image
var sausageBitmap:Bitmap = new Sausage();
// create a Texture object to feed the Image object
var texture:Texture = Texture.fromBitmap(sausageBitmap);
// create a Image object with our one texture
var image:Image = new Image(texture);
//image.width = 1000;
// show it
addChild(image);
最後に得られるのはこれです:
https://www.dropbox.com/s/wvqws29tg3sxwzv/starling.png
png が途中で切れてしまうのはなぜですか?