Thanks for the response, I have tried this but the camera view is too sluggish!
From: Javier Guerrero García [via Apache Flex Users] [mailto:[email protected]] Sent: Saturday, March 15, 2014 6:37 AM To: Kwolbert Subject: Re: Delete image from camera roll Just another option: attach the video camera directly, and just capture the image and process it bypassing cameraUI. If you dont want to save it, i think it's the fastest and simplest solution ;) El sábado, 15 de marzo de 2014, Lee Burrows <[hidden email]> escribió: > I havent tested, but this code should work: > > cameraUI = new CameraUI(); > cameraUI.addEventListener(MediaEvent.COMPLETE, onCameraUIComplete); > cameraUI.launch(MediaType.IMAGE); > > private function onCameraUIComplete(event:MediaEvent):void > { > var file:File = event.data.file; > file.delete(); > } > > This will immediately delete the picture from the device, so just put your > code before file.delete() > > > > > On 14/03/2014 23:11, OmPrakash Muppirala wrote: > >> Kwolbert, >> >> Have you looked at one of the ANEs available? >> Perhaps this one has the feature you are looking for: >> http://distriqt.com/native-extensions#camera >> >> Thanks, >> Om >> >> >> On Thu, Mar 13, 2014 at 9:05 PM, Kwolbert <[hidden email]> wrote: >> >> I need to use the CameraUI class call to take a picture. But the picture >>> is >>> of members check stubs which is sensitive information, so I don't want to >>> stored that image on the device itself. However android saves all images >>> using the the cameraUI class. Is any way to prevent android from saving >>> the >>> image in the camera roll or deleting a it from the camera roll when done >>> with the image? >>> Thanks >>> Keith >>> >>> >>> >>> -- >>> View this message in context: >>> http://apache-flex-users.2333346.n4.nabble.com/Delete- >>> image-from-camera-roll-tp5513.html >>> Sent from the Apache Flex Users mailing list archive at Nabble.com. >>> >>> > > -- > Lee Burrows > ActionScripter > > _____ If you reply to this email, your message will be added to the discussion below: http://apache-flex-users.2333346.n4.nabble.com/Delete-image-from-camera-roll-tp5513p5550.html To unsubscribe from Delete image from camera roll, click here <http://apache-flex-users.2333346.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=5513&code=a3dvbGJlcnRAYW1pc2N1LmNvbXw1NTEzfC02NzcyNjE5Mw==> . <http://apache-flex-users.2333346.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml> NAML -- View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Delete-image-from-camera-roll-tp5513p5573.html Sent from the Apache Flex Users mailing list archive at Nabble.com.
