Reputation: 19238
Is there a way to have the file reference work under ipad?
The file reference works for flash and andriod tablet, but not the ipad.
/**
* uploadNewBackground
*
* Sets up the position for the panel container and add Event Listener to
* all the buttons for different categories and also container a listener
* for the zoom in and out function
*/
private function uploadNewBackground(e:MouseEvent):void{
var imageFileTypes:FileFilter = new FileFilter("Images (*.jpg, *.png)", "*.jpg;*.png");
_file = new FileReference();
_file.browse([imageFileTypes]);
_file.addEventListener(Event.SELECT, selectFile);
}
Upvotes: 0
Views: 1480
Reputation: 6349
Yes, you need to use the CameraRoll API
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/CameraRoll.html
This is a great example of how to use it
http://www.flashandmath.com/mobile/cameraroll/
Upvotes: 2