Tour de Flex Mobile 4.5.1 Camera Roll problem
I am trying the camera roll example from mobile tour de flex found at http://www.adobe.com/devnet-archive/flex/tourdeflex/web/#illustIndex=0;sampleId=70036;docIndex=0
http://www.adobe.com/devnet-archive/flex/tourdeflex/web/#illustIndex=0;sampleId=70036;docIndex=0protected function onMediaSelect(event:MediaEvent):void
{
var mp:MediaPromise = event.data;
lblFile.text = mp.file.name + "\n" + mp.file.url;
lblFile.visible = true;
image.source = mp.file.url;
}
Everything works until after I select an image from my camera roll. The image is never displayed on the screen. The above function is called but dies on the 2nd line. I am trying this on my iPad and iPhone.
Anyone have any ideas or had similar results?
