Paquete | com.adobe.exm.expression.impl |
Clase | public class ExpressionEvaluationService |
Herencia | ExpressionEvaluationService EventDispatcher Object |
Implementa | IExpressionEvaluationService |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Expression Manager 9.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
Método | Definido por | ||
---|---|---|---|
Constructor of expression evaluation service. | ExpressionEvaluationService | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de un evento. | EventDispatcher | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
evaluateExpression(expression:String, expressionDefinitionId:String, varsMap:Object, qualifiedClassName:String):Object
This API is used to evaluate an expression at flex side. | ExpressionEvaluationService | ||
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento. | EventDispatcher | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
registerExpressionsUsingBytesLoader(expressionDefinitionId:String, swfBytes:ByteArray, lazyLoad:Boolean = false):void
Used to load swf from the specified byte array. | ExpressionEvaluationService | ||
registerExpressionsUsingLoader(expressionDefinitionId:String, expressionLoader:IExpressionLoader, lazyLoad:Boolean = false):void
Used to load swf using a custom loader. | ExpressionEvaluationService | ||
registerExpressionsUsingUrlLoader(expressionDefinitionId:String, swfUrl:String, urlVars:Object = null, lazyLoad:Boolean = false):void
Used to load the expression swf from the specified URL. | ExpressionEvaluationService | ||
Elimina un detector del objeto EventDispatcher. | EventDispatcher | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object | ||
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto. | EventDispatcher |
Evento | Resumen | Definido por | ||
---|---|---|---|---|
[evento broadcast] Se distribuye cuando Flash Player o AIR pasan a estar activos. | EventDispatcher | |||
[evento broadcast] Se distribuye cuando Flash Player o de AIR pasan a estar inactivos. | EventDispatcher | |||
Dispatched when the registration of the expression SWF fails. | ExpressionEvaluationService | |||
Dispatched when the expression SWF is successfully registered. | ExpressionEvaluationService |
ExpressionEvaluationService | () | Información sobre |
public function ExpressionEvaluationService(defaultSwfUrl:String, expressionDefinitionParamName:String)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Expression Manager 9.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
Constructor of expression evaluation service.
ParámetrosdefaultSwfUrl:String — URL of the SWF.
| |
expressionDefinitionParamName:String — parameter name used in SWF url.
|
evaluateExpression | () | método |
public function evaluateExpression(expression:String, expressionDefinitionId:String, varsMap:Object, qualifiedClassName:String):Object
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Expression Manager 9.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This API is used to evaluate an expression at flex side. Throws ExpressionEvaluationError in case Swf load is not complete or errored out.
Parámetros
expression:String — expression to be evaluated.
| |
expressionDefinitionId:String — unique id used to load the expression swf into flex application.
| |
varsMap:Object — map containing variables used in expressions.
| |
qualifiedClassName:String — Name of the AS class containing expressions. This name is passed to the generateSWF API at the time of generating swf.
|
Object — evaluated value of the expression.
|
registerExpressionsUsingBytesLoader | () | método |
public function registerExpressionsUsingBytesLoader(expressionDefinitionId:String, swfBytes:ByteArray, lazyLoad:Boolean = false):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Expression Manager 9.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
Used to load swf from the specified byte array.
Parámetros
expressionDefinitionId:String — unique id used later for evaluating expressions contained in this swf.
| |
swfBytes:ByteArray — byte[] containing swf.
| |
lazyLoad:Boolean (default = false ) — if true swf will be loaded on first expression evaluation.
|
registerExpressionsUsingLoader | () | método |
public function registerExpressionsUsingLoader(expressionDefinitionId:String, expressionLoader:IExpressionLoader, lazyLoad:Boolean = false):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Expression Manager 9.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
Used to load swf using a custom loader. The custom loader is required to implement IExpressionLoader.
Parámetros
expressionDefinitionId:String — unique id used later for evaluating expressions contained in this swf.
| |
expressionLoader:IExpressionLoader — custom expression loader for loading swf.
| |
lazyLoad:Boolean (default = false ) — if true swf will be loaded on first expression evaluation.
|
registerExpressionsUsingUrlLoader | () | método |
public function registerExpressionsUsingUrlLoader(expressionDefinitionId:String, swfUrl:String, urlVars:Object = null, lazyLoad:Boolean = false):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Expression Manager 9.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
Used to load the expression swf from the specified URL. urlVars can be used to specify URL parameters.
The swf is registered with the specified expressionDefinitionId. This id is required to be passed at the time of evaluating expressions.
Parámetros
expressionDefinitionId:String — unique id used later for evaluating expressions contained in this swf.
| |
swfUrl:String — url of the swf.
| |
urlVars:Object (default = null ) — url variables
| |
lazyLoad:Boolean (default = false ) — if true swf will be loaded on first expression evaluation.
|
expressionRegistrationFailure | Evento |
com.adobe.exm.expression.event.ExpressionRegistrationFailureEvent
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Expression Manager 9.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
Dispatched when the registration of the expression SWF fails.
expressionRegistrationSuccess | Evento |
com.adobe.exm.expression.event.ExpressionRegistrationSuccessEvent
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Expression Manager 9.5 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
Dispatched when the expression SWF is successfully registered.
Tue Jun 12 2018, 02:12 PM Z