Paquete | org.osmf.events |
Clase | public class DRMEvent |
Herencia | DRMEvent 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.1, 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 | ||
drmState : String [solo lectura]
The current state of the DRM trait. | DRMEvent | ||
endDate : Date [solo lectura]
The end date for the playback window, null if authentication
hasn't taken place. | DRMEvent | ||
eventPhase : uint [solo lectura]
La fase actual en el flujo del evento. | Event | ||
mediaError : MediaError [solo lectura]
The error that describes an authentication failure. | DRMEvent | ||
period : Number [solo lectura]
The length of the playback window, in seconds; NaN if
authentication hasn't taken place. | DRMEvent | ||
serverURL : String [solo lectura]
The authentication prompt for the DRM content associated with this DRMEvent. | DRMEvent | ||
startDate : Date [solo lectura]
The start date for the playback window, null if authentication
hasn't taken place. | DRMEvent | ||
target : Object [solo lectura]
El destino del evento. | Event | ||
token : Object [solo lectura]
The token returned as a result of a successful authentication. | DRMEvent | ||
type : String [solo lectura]
El tipo de evento. | Event |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
DRMEvent(type:String, state:String, bubbles:Boolean = false, cancelable:Boolean = false, start:Date = null, end:Date = null, period:Number = 0, serverURL:String = null, token:Object = null, mediaError:MediaError = null)
Constructor. | DRMEvent | ||
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 | ||
---|---|---|---|
DRM_STATE_CHANGE : String = "drmStateChange" [estática]
The DRMEvent.DRM_STATE_CHANGE constant defines the value
of the type property of the event object for a change to the drmState
of a DRMTrait. | DRMEvent |
Información sobre propiedades
drmState | propiedad |
drmState:String
[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.1, AIR 1.5 |
The current state of the DRM trait. Possible values are listed on the DRMState enumeration.
Implementación
public function get drmState():String
endDate | propiedad |
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.1, AIR 1.5 |
The error that describes an authentication failure.
Implementación
public function get mediaError():MediaError
period | propiedad |
period:Number
[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.1, AIR 1.5 |
The length of the playback window, in seconds; NaN if authentication hasn't taken place.
Note that this property will generally be the difference between startDate and endDate, but is included as a property because there may be times where the duration is known up front, but the start or end dates are not (e.g. a one week rental).
Implementación
public function get period():Number
serverURL | propiedad |
startDate | propiedad |
token | propiedad |
Información sobre constructores
DRMEvent | () | Información sobre |
public function DRMEvent(type:String, state:String, bubbles:Boolean = false, cancelable:Boolean = false, start:Date = null, end:Date = null, period:Number = 0, serverURL:String = null, token:Object = 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.1, AIR 1.5 |
Constructor.
Parámetrostype:String — The type of the event.
| |
state:String — Specifies whether the event can bubble up the display list hierarchy.
| |
bubbles:Boolean (default = false ) — Specifies whether the behavior associated with the event can be prevented.
| |
cancelable:Boolean (default = false ) — Specified the unique identifier for this content
| |
start:Date (default = null ) — The authentication prompt associated with this content.
| |
end:Date (default = null ) — The error that describes an authentication failure.
| |
period:Number (default = 0 )
| |
serverURL:String (default = null )
| |
token:Object (default = null )
| |
mediaError:MediaError (default = null )
|
Información sobre constantes
DRM_STATE_CHANGE | Constante |
public static const DRM_STATE_CHANGE:String = "drmStateChange"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.0 |
Versiones de motor de ejecución: | Flash Player 10.1, AIR 1.5 |
The DRMEvent.DRM_STATE_CHANGE constant defines the value of the type property of the event object for a change to the drmState of a DRMTrait.
Tue Jun 12 2018, 02:12 PM Z