Packagedeng.fzip
Classpublic class FZipErrorEvent
InheritanceFZipErrorEvent Inheritance flash.events.Event

FZip dispatches FZipErrorEvent objects when it encounters errors while parsing the ZIP archive. There is only one type of FZipErrorEvent: FZipErrorEvent.PARSE_ERROR



Public Properties
 PropertyDefined by
  text : String
A human readable description of the kind of parse error.
FZipErrorEvent
Public Methods
 MethodDefined by
  
FZipErrorEvent(type:String, text:String = "", bubbles:Boolean = false, cancelable:Boolean = false)
Constructor
FZipErrorEvent
  
clone():Event
Creates a copy of the FZipErrorEvent object and sets the value of each property to match that of the original.
FZipErrorEvent
Public Constants
 ConstantDefined by
  PARSE_ERROR : String = "parseError"
[static] Defines the value of the type property of a FZipErrorEvent object.
FZipErrorEvent
Property detail
textproperty
public var text:String

A human readable description of the kind of parse error.

Constructor detail
FZipErrorEvent()constructor
public function FZipErrorEvent(type:String, text:String = "", 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 FZipErrorEvent: FZipErrorEvent.PARSE_ERROR.
 
text:String (default = "") — A human readable description of the kind of parse error.
 
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 FZipErrorEvent object and sets the value of each property to match that of the original.

Returns
Event — A new FZipErrorEvent object with property values that match those of the original.
Constant detail
PARSE_ERRORconstant
public static const PARSE_ERROR:String = "parseError"

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