Packagecom.myflashlab.air.extensions.fileChooser
Classpublic class FileChooserEvent
InheritanceFileChooserEvent Inheritance flash.events.Event



Public Methods
 MethodDefined By
  
FileChooserEvent(type:String, data:* = null, bubbles:Boolean = false, cancelable:Boolean = false)
FileChooserEvent
Public Constants
 ConstantDefined By
  ERROR : String = onError
[static] incase there's been an error in selecting the file, this event will be dispatched.
FileChooserEvent
  RESULT : String = onResult
[static] when you select a file and return to your flash project, this listener will be called and pass the selected file as a File object which you can get it by calling e.param as File.
FileChooserEvent
Constructor Detail
FileChooserEvent()Constructor
public function FileChooserEvent(type:String, data:* = null, bubbles:Boolean = false, cancelable:Boolean = false)



Parameters
type:String
 
data:* (default = null)
 
bubbles:Boolean (default = false)
 
cancelable:Boolean (default = false)
Constant Detail
ERRORConstant
public static const ERROR:String = onError

incase there's been an error in selecting the file, this event will be dispatched.

RESULTConstant 
public static const RESULT:String = onResult

when you select a file and return to your flash project, this listener will be called and pass the selected file as a File object which you can get it by calling e.param as File.