cameraRoll addBitmapData file name
How do I get the file name of the image created by addBitmapData?
I'm capturing an image of a multiTouch drawing with this ...
var cameraRoll:CameraRoll = new CameraRoll();
var bitmapData:BitmapData = new BitmapData(bc.width, bc.height);
bitmapData.draw(bc);
cameraRoll.addBitmapData(bitmapData);
When addBitmapData is complete, I need to receive the file name back so I can display back the resulting captured image.
Researching the docs, it doesn't look like there is a complete event for addBitmapData.
Thanks,
Don
