Paquete | mx.events |
Clase | public class TweenEvent |
Herencia | TweenEvent Event Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
-
tweenUpdate
-
tweenEnd
Elementos de API relacionados
Propiedad | Definido por | ||
---|---|---|---|
bubbles : Boolean [solo lectura]
Indica si un evento es un evento de propagación. | Event | ||
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 | ||
value : Object
For a tweenStart or tweenUpdate event, the value passed to the
onTweenUpdate() method; for a tweenEnd event,
the value passed to the onTweenEnd() method. | TweenEvent |
Método | Definido por | ||
---|---|---|---|
Constructor. | TweenEvent | ||
Duplica una instancia de la subclase Event. | Event | ||
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 | ||
---|---|---|---|
TWEEN_END : String = "tweenEnd" [estática]
The TweenEvent.TWEEN_END constant defines the value of the
event object's type property for a tweenEnd event. | TweenEvent | ||
TWEEN_START : String = "tweenStart" [estática]
The TweenEvent.TWEEN_START constant defines the value of the
event object's type property for a tweenStart event. | TweenEvent | ||
TWEEN_UPDATE : String = "tweenUpdate" [estática]
The TweenEvent.TWEEN_UPDATE constant defines the value of the
event object's type property for a tweenUpdate event. | TweenEvent |
value | propiedad |
public var value:Object
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
For a tweenStart
or tweenUpdate
event, the value passed to the
onTweenUpdate()
method; for a tweenEnd
event,
the value passed to the onTweenEnd()
method.
For the exact value of this property, see the instance class for each tween effect.
Elementos de API relacionados
mx.effects.effectClasses.BlurInstance
mx.effects.effectClasses.DissolveInstance
mx.effects.effectClasses.FadeInstance
mx.effects.effectClasses.GlowInstance
mx.effects.effectClasses.MaskEffectInstance
mx.effects.effectClasses.MoveInstance
mx.effects.effectClasses.ResizeInstance
mx.effects.effectClasses.RotateInstance
mx.effects.effectClasses.ZoomInstance
TweenEvent | () | Información sobre |
public function TweenEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, value:Object = null)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Constructor.
Parámetrostype: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.
| |
value:Object (default = null ) — For a tweenStart or tweenUpdate event, the value passed to the
onTweenUpdate() method; for a tweenEnd event,
the value passed to the onTweenEnd() method.
|
TWEEN_END | Constante |
public static const TWEEN_END:String = "tweenEnd"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The TweenEvent.TWEEN_END
constant defines the value of the
event object's type
property for a tweenEnd
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The 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 . |
target | The 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. |
value | The value passed to the
onTweenEnd() method. |
Elementos de API relacionados
TWEEN_START | Constante |
public static const TWEEN_START:String = "tweenStart"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The TweenEvent.TWEEN_START
constant defines the value of the
event object's type
property for a tweenStart
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The 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 . |
target | The 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. |
value | The value passed to the
onTweenUpdate() method. |
TWEEN_UPDATE | Constante |
public static const TWEEN_UPDATE:String = "tweenUpdate"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The TweenEvent.TWEEN_UPDATE
constant defines the value of the
event object's type
property for a tweenUpdate
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The 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 . |
target | The 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. |
value | The value passed to the
onTweenUpdate() method. |
Tue Jun 12 2018, 02:12 PM Z