Referencia de ActionScript® 3.0 para la plataforma de Adobe® Flash®
Inicio  |  Ocultar lista de paquetes y clases |  Paquetes  |  Clases  |  Novedades  |  Índice  |  Apéndices  |  ¿Por qué hay texto en inglés?
Filtros: Recuperando datos del servidor...
Recuperando datos del servidor...
mx.events 

SWFBridgeEvent  - AS3 Flex

Paquetemx.events
Clasepublic class SWFBridgeEvent
HerenciaSWFBridgeEvent Inheritance Event Inheritance 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

This is an event that is sent between applications that are in different security sandboxes. The event lets objects in other sandboxes know what is going on in this sandbox. The events are informational in nature as opposed to a SWFBridgeRequest, which request an object do something on its behalf.

This class defines event constants that refer to "activation". In this case, activation means one of the components in the application can receive the keyboard input focus. When an application is activated, the component that last had focus receives focus again.



Propiedades públicas
 PropiedadDefinido por
 Inheritedbubbles : Boolean
[solo lectura] Indica si un evento es un evento de propagación.
Event
 Inheritedcancelable : Boolean
[solo lectura] Indica si se puede evitar el comportamiento asociado al evento.
Event
 Inheritedconstructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada.
Object
 InheritedcurrentTarget : Object
[solo lectura] Objeto que procesa de forma activa el objeto de evento con un detector de eventos.
Event
  data : Object
Information about the event.
SWFBridgeEvent
 InheritedeventPhase : uint
[solo lectura] La fase actual en el flujo del evento.
Event
 Inheritedtarget : Object
[solo lectura] El destino del evento.
Event
 Inheritedtype : String
[solo lectura] El tipo de evento.
Event
Métodos públicos
 MétodoDefinido por
  
SWFBridgeEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, data:Object = null)
Constructor.
SWFBridgeEvent
 Inherited
Duplica una instancia de la subclase Event.
Event
 Inherited
formatToString(className:String, ... arguments):String
Una función de utilidad para implementar el método toString() en las clases Event personalizadas de ActionScript 3.0.
Event
 Inherited
Indica si un objeto tiene definida una propiedad especificada.
Object
 Inherited
Comprueba si se ha llamado a preventDefault() en el evento.
Event
 Inherited
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro.
Object
  
[estática] Marshal a SWFBridgeRequest from a remote ApplicationDomain into the current ApplicationDomain.
SWFBridgeEvent
 Inherited
Cancela el comportamiento predeterminado de un evento si es posible cancelarlo.
Event
 Inherited
Indica si existe la propiedad especificada y si es enumerable.
Object
 Inherited
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle.
Object
 Inherited
Impide el proceso de cualquier detector de eventos en el nodo actual y los nodos siguientes en el flujo del evento.
Event
 Inherited
Impide el proceso de cualquier detector de eventos en nodos siguientes al nodo actual.
Event
 Inherited
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional.
Object
 Inherited
Devuelve una cadena que contiene todas las propiedades del objeto de evento.
Event
 Inherited
Devuelve el valor simple del objeto especificado.
Object
Constantes públicas
 ConstanteDefinido por
  BRIDGE_AIR_WINDOW_ACTIVATE : String = "bridgeAIRWindowActivate"
[estática] Dispatched to a parent bridge or sandbox root to notify it that the AIR window was activated.
SWFBridgeEvent
  BRIDGE_AIR_WINDOW_DEACTIVATE : String = "bridgeAIRWindowDeactivate"
[estática] Dispatched to a parent bridge or sandbox root to notify it that the AIR window was deactivated.
SWFBridgeEvent
  BRIDGE_APPLICATION_ACTIVATE : String = "bridgeApplicationActivate"
[estática] Dispatched to a parent bridge or sandbox root to notify it that another application has been activated.
SWFBridgeEvent
  BRIDGE_APPLICATION_UNLOADING : String = "bridgeApplicationUnloading"
[estática] Sent through a bridge to a child application's SystemManager to notify it that the SWF is about to be unloaded.
SWFBridgeEvent
  BRIDGE_FOCUS_MANAGER_ACTIVATE : String = "bridgeFocusManagerActivate"
[estática] Dispatched through bridges to all other FocusManagers to notify them that another FocusManager is now active.
SWFBridgeEvent
  BRIDGE_NEW_APPLICATION : String = "bridgeNewApplication"
[estática] Dispatched through a parent bridge to its SWFLoader to notify it that a new SystemManager has been initialized.
SWFBridgeEvent
  BRIDGE_WINDOW_ACTIVATE : String = "bridgeWindowActivate"
[estática] Dispatched to a parent bridge or sandbox root to notify it that a window was activated.
SWFBridgeEvent
  BRIDGE_WINDOW_DEACTIVATE : String = "brdigeWindowDeactivate"
[estática] Dispatched to a parent bridge or sandbox root to notify it that the proxy SystemManager was deactivated.
SWFBridgeEvent
Información sobre propiedades

data

propiedad
public var data: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

Information about the event.

Información sobre constructores

SWFBridgeEvent

()Información sobre
public function SWFBridgeEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, data: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ámetros
type: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.
 
data:Object (default = null) — An object that is null by default, but can contain information about the event, depending on the type of event.
Información sobre métodos

marshal

()método
public static function marshal(event:Event):SWFBridgeEvent

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

Marshal a SWFBridgeRequest from a remote ApplicationDomain into the current ApplicationDomain.

Parámetros

event:Event — A SWFBridgeRequest which might have been created in a different ApplicationDomain.

Valor devuelto
SWFBridgeEvent — A SWFBridgeEvent that was created in the caller's ApplicationDomain.
Información sobre constantes

BRIDGE_AIR_WINDOW_ACTIVATE

Constante
public static const BRIDGE_AIR_WINDOW_ACTIVATE:String = "bridgeAIRWindowActivate"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 4
Versiones de motor de ejecución: Flash Player 10, AIR 1.5

Dispatched to a parent bridge or sandbox root to notify it that the AIR window was activated.

BRIDGE_AIR_WINDOW_DEACTIVATE

Constante 
public static const BRIDGE_AIR_WINDOW_DEACTIVATE:String = "bridgeAIRWindowDeactivate"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Flex 4
Versiones de motor de ejecución: Flash Player 10, AIR 1.5

Dispatched to a parent bridge or sandbox root to notify it that the AIR window was deactivated.

BRIDGE_APPLICATION_ACTIVATE

Constante 
public static const BRIDGE_APPLICATION_ACTIVATE:String = "bridgeApplicationActivate"

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

Dispatched to a parent bridge or sandbox root to notify it that another application has been activated.

BRIDGE_APPLICATION_UNLOADING

Constante 
public static const BRIDGE_APPLICATION_UNLOADING:String = "bridgeApplicationUnloading"

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

Sent through a bridge to a child application's SystemManager to notify it that the SWF is about to be unloaded. The SystemManager marshals and re-dispatches the event so that application code can remove references that would prevent the SWF file from unloading.

BRIDGE_FOCUS_MANAGER_ACTIVATE

Constante 
public static const BRIDGE_FOCUS_MANAGER_ACTIVATE:String = "bridgeFocusManagerActivate"

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

Dispatched through bridges to all other FocusManagers to notify them that another FocusManager is now active.

BRIDGE_NEW_APPLICATION

Constante 
public static const BRIDGE_NEW_APPLICATION:String = "bridgeNewApplication"

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

Dispatched through a parent bridge to its SWFLoader to notify it that a new SystemManager has been initialized.

BRIDGE_WINDOW_ACTIVATE

Constante 
public static const BRIDGE_WINDOW_ACTIVATE:String = "bridgeWindowActivate"

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

Dispatched to a parent bridge or sandbox root to notify it that a window was activated. For a compatible application, the data property is an object with two properties, window and notifier. The data.window property is the SystemManager proxy that was activated. For an untrusted application, the data.window property is a string id of the window. The data.notifier property is the bridge of the application dispatching the event. The event might be dispatched directly to a sandbox root instead of over a bridge, so event.target might not be the bridge of the application dispatching the event.

BRIDGE_WINDOW_DEACTIVATE

Constante 
public static const BRIDGE_WINDOW_DEACTIVATE:String = "brdigeWindowDeactivate"

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

Dispatched to a parent bridge or sandbox root to notify it that the proxy SystemManager was deactivated. For a compatible application, the data property is an object with two properties, window and notifier. The data.window property is the SystemManager proxy that was activated. For an untrusted application, the data.window property is a string id of the window. The data.notifier property is the bridge of the application dispatching the event. The event might be dispatched directly to a sandbox root instead of over a bridge, so event.target might not be the bridge of the application dispatching the event.





[ X ]¿Por qué hay texto en inglés?
Cierto contenido de la Referencia de ActionScript 3.0 se muestra en inglés

No todo el contenido de la Referencia de ActionScript 3.0 se traduce a todos los idiomas. Si un elemento del lenguaje no se traduce, aparecerá en inglés. Por ejemplo, la clase ga.controls.HelpBox no está traducida en ningún idioma. Por lo tanto, en la versión en español de la referencia, la clase ga.controls.HelpBox aparecerá en inglés.