Search code examples
actionscript-3airopenfiledialogfilepath

openFileDialog for Adobe Air app


I have a Desktop Adobe Air app. I want to add openFileDialog to my app to ask user for the path of his project. Unfortunatelly, I can't use FileReference - it returns only file name, not path.

    private function selectHandler(event:Event):void {
       var file:FileReference = FileReference(event.target);
       trace("selectHandler: name=" + file.name); //only name!
    }

Is there any way to apply openFileDialog in such app and get the path of file, which was selected by user?


Solution

  • flash.filesystem.File.browseForDirectory()