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 var file:FZipFile
The file that has finished loading.
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.
|
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.
|
public static const FILE_LOADED:String = "fileLoaded"
Defines the value of the type property of a FZipEvent object.