Packagedeng.fzip
Classpublic class FZipEvent
InheritanceFZipEvent Inheritance flash.events.Event

FZip dispatches FZipEvent objects when a file contained in the ZIP archive has finished loading and can be accessed. There is only one type of FZipEvent: FZipErrorEvent.FILE_LOADED.



Public Properties
 PropertyDefined by
  file : FZipFile
The file that has finished loading.
FZipEvent
Public Methods
 MethodDefined by
  
FZipEvent(type:String, file:FZipFile = null, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor
FZipEvent
  
clone():Event
Creates a copy of the FZipEvent object and sets the value of each property to match that of the original.
FZipEvent
Public Constants
 ConstantDefined by
  FILE_LOADED : String = "fileLoaded"
[static] Defines the value of the type property of a FZipEvent object.
FZipEvent
Property detail
fileproperty
public var file:FZipFile

The file that has finished loading.

Constructor detail
FZipEvent()constructor
public function FZipEvent(type:String, file:FZipFile = null, bubbles:Boolean = false, cancelable:Boolean = false)

Constructor

Parameters
type:String — The type of the event. Event listeners can access this information through the inherited type property. There is only one type of FZipEvent: FZipEvent.PARSE_ERROR.
 
file:FZipFile (default = null) — The file that has finished loading.
 
bubbles:Boolean (default = false) — Determines whether the Event object participates in the bubbling stage of the event flow. Event listeners can access this information through the inherited bubbles property.
 
cancelable:Boolean (default = false) — Determines whether the Event object can be canceled. Event listeners can access this information through the inherited cancelable property.
Method detail
clone()method
public override function clone():Event

Creates a copy of the FZipEvent object and sets the value of each property to match that of the original.

Returns
Event — A new FZipEvent object with property values that match those of the original.
Constant detail
FILE_LOADEDconstant
public static const FILE_LOADED:String = "fileLoaded"

Defines the value of the type property of a FZipEvent object.