这似乎是一个简单的问题,但我找不到答案。
我有这个代码:
import com.adobe.images.PNGEncoder;
var fr:FileReference = new FileReference();
var pngSource:BitmapData = new BitmapData (stage.width, stage.height);
pngSource.draw(sketch_mc);
var ba:ByteArray = PNGEncoder.encode(pngSource);
fr.save(ba,'alon20.png');
这为我节省了一个图像。我希望它自动保存它而不是像现在这样打开一个对话框。我希望发生这种情况的原因是因为我想在渲染时拍摄每一帧的照片(用它制作电影)。
我错过了什么?