How to save to CameraRoll on Playbook?
Hi! I'm working on an air app for playbook and I really want to know if it is possible to save images on the device's CameraRoll.
I'm compiling my app with AIR 2.6 sdk, exporting through Flash Builder and testing with a real playbook.
My project doesn't have any errors and I also checked the use_camera permission from the project properties (not sure if this is necessary for saving an image) but I'm not getting any image when testing my app...
I'm using the code bellow, the same that works with no problems on an iPad.
if (CameraRoll.supportsAddBitmapData) {
var cameraRoll:CameraRoll = new CameraRoll();
cameraRoll.addBitmapData(_bitmapData3);
}
