Paquete | org.osmf.events |
Clase | public class NetConnectionFactoryEvent |
Herencia | NetConnectionFactoryEvent 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 | ||
mediaError : MediaError [solo lectura]
Error associated with the creation attempt. | NetConnectionFactoryEvent | ||
netConnection : NetConnection [solo lectura]
NetConnection to which this event refers. | NetConnectionFactoryEvent | ||
resource : URLResource [solo lectura]
URLResource to which this event refers. | NetConnectionFactoryEvent | ||
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 | ||
---|---|---|---|
NetConnectionFactoryEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, netConnection:NetConnection = null, resource:URLResource = null, mediaError:MediaError = null)
Constructor. | NetConnectionFactoryEvent | ||
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 | ||
---|---|---|---|
CREATION_COMPLETE : String = "creationComplete" [estática]
The NetConnectionFactoryEvent.CREATION_COMPLETE constant defines the value of the
type property of the event object for a NetConnectionFactoryEvent when the
the class has succeeded in establishing a connected NetConnection. | NetConnectionFactoryEvent | ||
CREATION_ERROR : String = "creationError" [estática]
The NetConnectionFactoryEvent.CREATION_ERROR constant defines the value of the
type property of the event object for a NetConnectionFactoryEvent when the
the class has failed at establishing a connected NetConnection. | NetConnectionFactoryEvent |
Información sobre propiedades
mediaError | propiedad |
mediaError:MediaError
[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 |
Error associated with the creation attempt. Should only be non-null when type is CREATION_ERROR.
Implementación
public function get mediaError():MediaError
netConnection | propiedad |
netConnection:NetConnection
[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 |
NetConnection to which this event refers.
Implementación
public function get netConnection():NetConnection
resource | propiedad |
resource:URLResource
[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 |
URLResource to which this event refers.
Implementación
public function get resource():URLResource
Información sobre constructores
NetConnectionFactoryEvent | () | Información sobre |
public function NetConnectionFactoryEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, netConnection:NetConnection = null, resource:URLResource = null, mediaError:MediaError = null)
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.
| |
netConnection:NetConnection (default = null ) — NetConnection to which this event refers.
| |
resource:URLResource (default = null ) — URLResource to which this event refers.
| |
mediaError:MediaError (default = null ) — Error associated with the creation attempt. Should only be non-null
when type is CREATION_ERROR.
|
Información sobre constantes
CREATION_COMPLETE | Constante |
public static const CREATION_COMPLETE:String = "creationComplete"
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 NetConnectionFactoryEvent.CREATION_COMPLETE constant defines the value of the type property of the event object for a NetConnectionFactoryEvent when the the class has succeeded in establishing a connected NetConnection.
CREATION_ERROR | Constante |
public static const CREATION_ERROR:String = "creationError"
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 NetConnectionFactoryEvent.CREATION_ERROR constant defines the value of the type property of the event object for a NetConnectionFactoryEvent when the the class has failed at establishing a connected NetConnection.
Tue Jun 12 2018, 02:12 PM Z