| Paquete | org.osmf.events |
| Clase | public class DisplayObjectEvent |
| Herencia | DisplayObjectEvent Event Object |
| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | OSMF 1.0 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Propiedades públicas
| 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 | |
| newDisplayObject : DisplayObject [solo lectura]
New value of view resulting from this change. | DisplayObjectEvent | ||
| newHeight : Number [solo lectura]
New value of height resulting from this change. | DisplayObjectEvent | ||
| newWidth : Number [solo lectura]
New value of width resulting from this change. | DisplayObjectEvent | ||
| oldDisplayObject : DisplayObject [solo lectura]
Old value of view before it was changed. | DisplayObjectEvent | ||
| oldHeight : Number [solo lectura]
Old value of height before it was changed. | DisplayObjectEvent | ||
| oldWidth : Number [solo lectura]
Old value of width before it was changed. | DisplayObjectEvent | ||
![]() | target : Object [solo lectura]
El destino del evento. | Event | |
![]() | type : String [solo lectura]
El tipo de evento. | Event | |
Métodos públicos
| Método | Definido por | ||
|---|---|---|---|
DisplayObjectEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, oldDisplayObject:DisplayObject = null, newDisplayObject:DisplayObject = null, oldWidth:Number = NaN, oldHeight:Number = NaN, newWidth:Number = NaN, newHeight:Number = NaN)
Constructor. | DisplayObjectEvent | ||
![]() |
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 | |
Constantes públicas
| Constante | Definido por | ||
|---|---|---|---|
| DISPLAY_OBJECT_CHANGE : String = "displayObjectChange" [estática]
The DisplayObjectEvent.DISPLAY_OBJECT_CHANGE constant defines the value
of the type property of the event object for a displayObjectChange
event. | DisplayObjectEvent | ||
| MEDIA_SIZE_CHANGE : String = "mediaSizeChange" [estática]
The DisplayObjectEvent.MEDIA_SIZE_CHANGE constant defines the value
of the type property of the event object for a mediaSizeChange
event. | DisplayObjectEvent | ||
Información sobre propiedades
newDisplayObject | propiedad |
newDisplayObject:DisplayObject [solo lectura] | Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | OSMF 1.0 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
New value of view resulting from this change.
Implementación
public function get newDisplayObject():DisplayObjectnewHeight | propiedad |
newWidth | propiedad |
oldDisplayObject | propiedad |
oldDisplayObject:DisplayObject [solo lectura] | Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | OSMF 1.0 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Old value of view before it was changed.
Implementación
public function get oldDisplayObject():DisplayObjectoldHeight | propiedad |
oldWidth | propiedad |
Información sobre constructores
DisplayObjectEvent | () | Información sobre |
public function DisplayObjectEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, oldDisplayObject:DisplayObject = null, newDisplayObject:DisplayObject = null, oldWidth:Number = NaN, oldHeight:Number = NaN, newWidth:Number = NaN, newHeight:Number = NaN)| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | OSMF 1.0 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Constructor.
Parámetrostype:String — Event type.
| |
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.
| |
oldDisplayObject:DisplayObject (default = null) — Previous view.
| |
newDisplayObject:DisplayObject (default = null) — New view.
| |
oldWidth:Number (default = NaN) — Previous width.
| |
oldHeight:Number (default = NaN) — Previous height.
| |
newWidth:Number (default = NaN) — New width.
| |
newHeight:Number (default = NaN) — New height.
|
Información sobre constantes
DISPLAY_OBJECT_CHANGE | Constante |
public static const DISPLAY_OBJECT_CHANGE:String = "displayObjectChange"| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | OSMF 1.0 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The DisplayObjectEvent.DISPLAY_OBJECT_CHANGE constant defines the value of the type property of the event object for a displayObjectChange event.
MEDIA_SIZE_CHANGE | Constante |
public static const MEDIA_SIZE_CHANGE:String = "mediaSizeChange"| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | OSMF 1.0 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The DisplayObjectEvent.MEDIA_SIZE_CHANGE constant defines the value of the type property of the event object for a mediaSizeChange event.
Tue Jun 12 2018, 02:12 PM Z
Ocultar propiedades públicas heredadas
Mostrar propiedades públicas heredadas