Pacchetto | com.adobe.gravity.framework |
Classe | public class BundleEvent |
Ereditarietà | BundleEvent Event Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
Proprietà | Definito da | ||
---|---|---|---|
bubbles : Boolean [sola lettura]
Indica se un evento è un evento di bubbling. | Event | ||
bundle : IBundle [sola lettura]
The bundle undergoing a lifecycle transition. | BundleEvent | ||
cancelable : Boolean [sola lettura]
Indica se il comportamento associato all'evento può essere impedito. | Event | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
currentTarget : Object [sola lettura]
L'oggetto che elabora attivamente l'oggetto Event con un listener di eventi. | Event | ||
eventPhase : uint [sola lettura]
La fase attuale del flusso di eventi. | Event | ||
target : Object [sola lettura]
Il target dell'evento. | Event | ||
type : String [sola lettura]
Il tipo di evento. | Event |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | BundleEvent | ||
[override]
Duplicates an instance of an Event subclass. | BundleEvent | ||
Una funzione dell'utilità per l'implementazione del metodo toString() in classi Event ActionScript 3.0 personalizzate. | Event | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Verifica se sull'evento è stato chiamato il metodo preventDefault(). | Event | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Annulla il comportamento predefinito di un evento se tale comportamento può essere annullato. | Event | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Impedisce l'elaborazione di tutti i listener di eventi nel nodo corrente e in tutti i nodi successivi del flusso di eventi. | Event | ||
Impedisce l'elaborazione di tutti i listener di eventi nei nodi del flusso di eventi successivi a quello corrente. | Event | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce una stringa che contiene tutte le proprietà dell'oggetto Event. | Event | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Costante | Definito da | ||
---|---|---|---|
BUNDLE_INSTALLED : String = "bundleInstalled" [statico] A bundle has been installed. | BundleEvent | ||
BUNDLE_RESOLVED : String = "bundleResolved" [statico] A bundle has been resolved. | BundleEvent | ||
BUNDLE_RESOLVING : String = "bundleResolving" [statico] A bundle is about to be resolved. | BundleEvent | ||
BUNDLE_STARTED : String = "bundleStarted" [statico] A bundle has been started. | BundleEvent | ||
BUNDLE_STARTING : String = "bundleStarting" [statico] A bundle is about to be started. | BundleEvent | ||
BUNDLE_STOPPED : String = "bundleStopped" [statico] A bundle has been stopped. | BundleEvent | ||
BUNDLE_STOPPING : String = "bundleStopping" [statico] A bundle is about to be stopped. | BundleEvent | ||
BUNDLE_UNINSTALLED : String = "bundleUninstalled" [statico] A bundle has been uninstalled. | BundleEvent | ||
BUNDLE_UNINSTALLING : String = "bundleUninstalling" [statico] A bundle is about to be uninstalled. | BundleEvent | ||
BUNDLE_UPDATED : String = "bundleUpdated" [statico] A bundle has been updated. | BundleEvent | ||
BUNDLE_UPDATING : String = "bundleUpdating" [statico] A bundle is about to be updated. | BundleEvent |
bundle | proprietà |
bundle:IBundle
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
The bundle undergoing a lifecycle transition.
Implementazione
public function get bundle():IBundle
BundleEvent | () | Funzione di costruzione |
public function BundleEvent(type:String, bundle:IBundle)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
Constructor.
Parametritype:String — The type of lifecycle event.
| |
bundle:IBundle — The bundle involved.
|
clone | () | metodo |
override public function clone():Event
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | 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 | Costante |
public static const BUNDLE_INSTALLED:String = "bundleInstalled"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle has been installed.
BUNDLE_RESOLVED | Costante |
public static const BUNDLE_RESOLVED:String = "bundleResolved"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle has been resolved.
BUNDLE_RESOLVING | Costante |
public static const BUNDLE_RESOLVING:String = "bundleResolving"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle is about to be resolved.
BUNDLE_STARTED | Costante |
public static const BUNDLE_STARTED:String = "bundleStarted"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle has been started.
BUNDLE_STARTING | Costante |
public static const BUNDLE_STARTING:String = "bundleStarting"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle is about to be started.
BUNDLE_STOPPED | Costante |
public static const BUNDLE_STOPPED:String = "bundleStopped"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle has been stopped.
BUNDLE_STOPPING | Costante |
public static const BUNDLE_STOPPING:String = "bundleStopping"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle is about to be stopped.
BUNDLE_UNINSTALLED | Costante |
public static const BUNDLE_UNINSTALLED:String = "bundleUninstalled"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle has been uninstalled.
BUNDLE_UNINSTALLING | Costante |
public static const BUNDLE_UNINSTALLING:String = "bundleUninstalling"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle is about to be uninstalled.
BUNDLE_UPDATED | Costante |
public static const BUNDLE_UPDATED:String = "bundleUpdated"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle has been updated.
BUNDLE_UPDATING | Costante |
public static const BUNDLE_UPDATING:String = "bundleUpdating"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
A bundle is about to be updated.
Tue Jun 12 2018, 02:44 PM Z