Pacchetto | com.adobe.solutions.exm.authoring.events |
Classe | public class ExpressionBuilderEvent |
Ereditarietà | ExpressionBuilderEvent Event Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Proprietà | Definito da | ||
---|---|---|---|
bubbles : Boolean [sola lettura]
Indica se un evento è un evento di bubbling. | Event | ||
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 | ||
expression : IExpression
Selected Expression
| ExpressionBuilderEvent | ||
target : Object [sola lettura]
Il target dell'evento. | Event | ||
type : String [sola lettura]
Il tipo di evento. | Event |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | ExpressionBuilderEvent | ||
[override]
Duplicates an instance of an Event subclass. | ExpressionBuilderEvent | ||
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 | ||
---|---|---|---|
CANCEL_EXPRESSION : String = "cancelExpression" [statico]
The ExpressionBuilderEvent.CANCEL_EXPRESSION constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Cancel button of a Expression Controlbar
in Expression Builder UI. | ExpressionBuilderEvent | ||
EXPRESSION_CREATION_COMPLETED : String = "expressionCreationCompleted" [statico]
The ExpressionBuilderEvent.EXPRESSION_CREATION_COMPLETED constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Complete(OK) button of a Expression Controlbar
in Expression Builder UI. | ExpressionBuilderEvent | ||
SAVE_EXPRESSION : String = "saveExpression" [statico]
The ExpressionBuilderEvent.SAVE_EXPRESSION constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Save button of a Expression Toolbar
in Expression Builder UI. | ExpressionBuilderEvent | ||
UPDATE_EXPRESSION : String = "updateExpression" [statico]
The ExpressionBuilderEvent.UPDATE_EXPRESSION constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Update button of a Expression Toolbar
in Expression Builder UI. | ExpressionBuilderEvent | ||
VALLIDATE_EXPRESSION : String = "validateExpression" [statico]
The ExpressionBuilderEvent.VALLIDATE_EXPRESSION constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Valiate button of a Expression Toolbar
in Expression Builder UI. | ExpressionBuilderEvent |
expression | proprietà |
public var expression:IExpression
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10.0 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Selected Expression
ExpressionBuilderEvent | () | Funzione di costruzione |
public function ExpressionBuilderEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10.0 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Constructor.
Parametritype:String | |
bubbles:Boolean (default = false )
| |
cancelable:Boolean (default = false )
|
clone | () | metodo |
override public function clone():Event
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
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.
|
CANCEL_EXPRESSION | Costante |
public static const CANCEL_EXPRESSION:String = "cancelExpression"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The ExpressionBuilderEvent.CANCEL_EXPRESSION constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Cancel button of a Expression Controlbar in Expression Builder UI.
EXPRESSION_CREATION_COMPLETED | Costante |
public static const EXPRESSION_CREATION_COMPLETED:String = "expressionCreationCompleted"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The ExpressionBuilderEvent.EXPRESSION_CREATION_COMPLETED constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Complete(OK) button of a Expression Controlbar in Expression Builder UI.
SAVE_EXPRESSION | Costante |
public static const SAVE_EXPRESSION:String = "saveExpression"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The ExpressionBuilderEvent.SAVE_EXPRESSION constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Save button of a Expression Toolbar in Expression Builder UI.
UPDATE_EXPRESSION | Costante |
public static const UPDATE_EXPRESSION:String = "updateExpression"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The ExpressionBuilderEvent.UPDATE_EXPRESSION constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Update button of a Expression Toolbar in Expression Builder UI.
VALLIDATE_EXPRESSION | Costante |
public static const VALLIDATE_EXPRESSION:String = "validateExpression"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The ExpressionBuilderEvent.VALLIDATE_EXPRESSION constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Valiate button of a Expression Toolbar in Expression Builder UI.
Tue Jun 12 2018, 02:44 PM Z