Packagemx.events
Classpublic class CloseEvent
InheritanceCloseEvent Inheritance flash.events.Event

The CloseEvent class represents event objects specific to popup windows, such as the Alert control.

See also

mx.controls.Alert


Public Properties
 PropertyDefined by
  detail : int
Identifies the button in the popped up control that was clicked.
CloseEvent
Public Methods
 MethodDefined by
  
CloseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, detail:int = -1)
Constructor.
CloseEvent
Public Constants
 ConstantDefined by
  CLOSE : String = "close"
[static] The CloseEvent.CLOSE constant defines the value of the type property of the event object for a close event.
CloseEvent
Property detail
detailproperty
public var detail:int

Identifies the button in the popped up control that was clicked. This property is for controls with multiple buttons. The Alert control sets this property to one of the following constants:

Constructor detail
CloseEvent()constructor
public function CloseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, detail:int = -1)

Constructor.

Parameters
type:String — The event type; indicates the action that caused the event.
 
bubbles:Boolean (default = false) — Specifies whether the event can bubble up the display list hierarchy.
 
cancelable:Boolean (default = false) — Specifies whether the behavior associated with the event can be prevented.
 
detail:int (default = -1) — Value of the detail property; identifies the button in the popped up control that was clicked.
Constant detail
CLOSEconstant
public static const CLOSE:String = "close"

The CloseEvent.CLOSE constant defines the value of the type property of the event object for a close event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.
detailFor controls with multiple buttons, detail identifies the button in the popped up control that was clicked.
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event.