Question
Cannot select images from iPhoto
- August 27, 2011
- 1 reply
- 872 views
I originally posted this on the Flex forum. I made a desktop AIR application that allows users to upload images to our server. Everything works except Mac people can't select images from iPhoto.
This is how I have the file selection setup:
private var fileRefList:FileReferenceList;
private var imageFileTypes:FileFilter = new FileFilter("Images (*.jpg, *.jpeg)", "*.jpg; *.jpeg");
private var allImageTypes:Array = new Array(imageFileTypes);

I also made an example application that replicates the problem. It actually let's you select iphoto images the first time, but if you try it again the select button (in the file browser window) is disabled.
