Есть ли способ заставить ссылку на файл работать под ipad?
Ссылка на файл работает для планшета flash и andriod, но не для 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);
}