How to view local videos on iOS mobile device
How do I view local videos on my iOS device running an Adobe Air app? I know how to view the CameraRoll for iOS in Flex on Adobe Air, but the CameraRoll class only brings up photos, no videos. When I use:
if (CameraRoll.supportsBrowseForImage) {
var roll:CameraRoll = new CameraRoll();
roll.browseForImage();
} else {
trace("Camera Browsing not available");
}
The cameraRoll instance that is brought up only shows photos, no videos. Any ideas?