Paquete | com.adobe.gravity.framework |
Clase | public class BundleEvent |
Herencia | BundleEvent Event Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
Propiedad | Definido por | ||
---|---|---|---|
bubbles : Boolean [solo lectura]
Indica si un evento es un evento de propagación. | Event | ||
bundle : IBundle [solo lectura]
The bundle undergoing a lifecycle transition. | BundleEvent | ||
cancelable : Boolean [solo lectura]
Indica si se puede evitar el comportamiento asociado al evento. | Event | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
currentTarget : Object [solo lectura]
Objeto que procesa de forma activa el objeto de evento con un detector de eventos. | Event | ||
eventPhase : uint [solo lectura]
La fase actual en el flujo del evento. | Event | ||
target : Object [solo lectura]
El destino del evento. | Event | ||
type : String [solo lectura]
El tipo de evento. | Event |
Método | Definido por | ||
---|---|---|---|
Constructor. | BundleEvent | ||
[override]
Duplicates an instance of an Event subclass. | BundleEvent | ||
Una función de utilidad para implementar el método toString() en las clases Event personalizadas de ActionScript 3.0. | Event | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Comprueba si se ha llamado a preventDefault() en el evento. | Event | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Cancela el comportamiento predeterminado de un evento si es posible cancelarlo. | Event | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Impide el proceso de cualquier detector de eventos en el nodo actual y los nodos siguientes en el flujo del evento. | Event | ||
Impide el proceso de cualquier detector de eventos en nodos siguientes al nodo actual. | Event | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve una cadena que contiene todas las propiedades del objeto de evento. | Event | ||
Devuelve el valor simple del objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
BUNDLE_INSTALLED : String = "bundleInstalled" [estática] A bundle has been installed. | BundleEvent | ||
BUNDLE_RESOLVED : String = "bundleResolved" [estática] A bundle has been resolved. | BundleEvent | ||
BUNDLE_RESOLVING : String = "bundleResolving" [estática] A bundle is about to be resolved. | BundleEvent | ||
BUNDLE_STARTED : String = "bundleStarted" [estática] A bundle has been started. | BundleEvent | ||
BUNDLE_STARTING : String = "bundleStarting" [estática] A bundle is about to be started. | BundleEvent | ||
BUNDLE_STOPPED : String = "bundleStopped" [estática] A bundle has been stopped. | BundleEvent | ||
BUNDLE_STOPPING : String = "bundleStopping" [estática] A bundle is about to be stopped. | BundleEvent | ||
BUNDLE_UNINSTALLED : String = "bundleUninstalled" [estática] A bundle has been uninstalled. | BundleEvent | ||
BUNDLE_UNINSTALLING : String = "bundleUninstalling" [estática] A bundle is about to be uninstalled. | BundleEvent | ||
BUNDLE_UPDATED : String = "bundleUpdated" [estática] A bundle has been updated. | BundleEvent | ||
BUNDLE_UPDATING : String = "bundleUpdating" [estática] A bundle is about to be updated. | BundleEvent |
bundle | propiedad |
bundle:IBundle
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
The bundle undergoing a lifecycle transition.
Implementación
public function get bundle():IBundle
BundleEvent | () | Información sobre |
public function BundleEvent(type:String, bundle:IBundle)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
Constructor.
Parámetrostype:String — The type of lifecycle event.
| |
bundle:IBundle — The bundle involved.
|
clone | () | método |
override public function clone():Event
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
Duplicates an instance of an Event subclass.
Returns a new Event object that is a copy of the original instance of the Event object.
You do not normally call clone()
; the EventDispatcher class calls it automatically
when you redispatch an event—that is, when you call dispatchEvent(event)
from a handler
that is handling event
.
The new Event object includes all the properties of the original.
When creating your own custom Event class, you must override the
inherited Event.clone()
method in order for it to duplicate the
properties of your custom class. If you do not set all the properties that you add
in your event subclass, those properties will not have the correct values when listeners
handle the redispatched event.
In this example, PingEvent
is a subclass of Event
and therefore implements its own version of clone()
.
class PingEvent extends Event { var URL:String; public override function clone():Event { return new PingEvent(type, bubbles, cancelable, URL); } }
Event — A new Event object that is identical to the original.
|
BUNDLE_INSTALLED | Constante |
public static const BUNDLE_INSTALLED:String = "bundleInstalled"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle has been installed.
BUNDLE_RESOLVED | Constante |
public static const BUNDLE_RESOLVED:String = "bundleResolved"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle has been resolved.
BUNDLE_RESOLVING | Constante |
public static const BUNDLE_RESOLVING:String = "bundleResolving"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle is about to be resolved.
BUNDLE_STARTED | Constante |
public static const BUNDLE_STARTED:String = "bundleStarted"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle has been started.
BUNDLE_STARTING | Constante |
public static const BUNDLE_STARTING:String = "bundleStarting"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle is about to be started.
BUNDLE_STOPPED | Constante |
public static const BUNDLE_STOPPED:String = "bundleStopped"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle has been stopped.
BUNDLE_STOPPING | Constante |
public static const BUNDLE_STOPPING:String = "bundleStopping"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle is about to be stopped.
BUNDLE_UNINSTALLED | Constante |
public static const BUNDLE_UNINSTALLED:String = "bundleUninstalled"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle has been uninstalled.
BUNDLE_UNINSTALLING | Constante |
public static const BUNDLE_UNINSTALLING:String = "bundleUninstalling"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle is about to be uninstalled.
BUNDLE_UPDATED | Constante |
public static const BUNDLE_UPDATED:String = "bundleUpdated"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle has been updated.
BUNDLE_UPDATING | Constante |
public static const BUNDLE_UPDATING:String = "bundleUpdating"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versiones de motor de ejecución: | AIR 1.1, Flash Player 9 |
A bundle is about to be updated.
Tue Jun 12 2018, 02:12 PM Z