包 | com.adobe.exm.expression.impl |
类 | public class ExpressionEvaluationService |
继承 | ExpressionEvaluationService EventDispatcher Object |
实现 | IExpressionEvaluationService |
语言版本: | ActionScript 3.0 |
产品版本: | Expression Manager Building Block 9.5 |
运行时版本: | Flash Player 10.2, AIR (unsupported) |
方法 | 由以下参数定义 | ||
---|---|---|---|
Constructor of expression evaluation service. | ExpressionEvaluationService | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
使用 EventDispatcher 对象注册事件侦听器对象,以使侦听器能够接收事件通知。 | EventDispatcher | ||
将事件调度到事件流中。 | EventDispatcher | ||
evaluateExpression(expression:String, expressionDefinitionId:String, varsMap:Object, qualifiedClassName:String):Object
This API is used to evaluate an expression at flex side. | ExpressionEvaluationService | ||
检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。 | EventDispatcher | ||
表示对象是否已经定义了指定的属性。 | Object | ||
表示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
表示指定的属性是否存在、是否可枚举。 | 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 | ||
从 EventDispatcher 对象中删除侦听器。 | EventDispatcher | ||
设置循环操作动态属性的可用性。 | Object | ||
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。 | Object | ||
返回指定对象的字符串表示形式。 | Object | ||
返回指定对象的原始值。 | Object | ||
检查是否用此 EventDispatcher 对象或其任何祖代为指定事件类型注册了事件侦听器。 | EventDispatcher |
事件 | 摘要 | 由以下参数定义 | ||
---|---|---|---|---|
[广播事件] Flash Player 或 AIR 应用程序获得操作系统焦点并变为活动状态时将调度此事件。 | EventDispatcher | |||
[广播事件] Flash Player 或 AIR 应用程序失去操作系统焦点并变为非活动状态时将调度此事件。 | EventDispatcher | |||
Dispatched when the registration of the expression SWF fails. | ExpressionEvaluationService | |||
Dispatched when the expression SWF is successfully registered. | ExpressionEvaluationService |
ExpressionEvaluationService | () | 构造函数 |
public function ExpressionEvaluationService(defaultSwfUrl:String, expressionDefinitionParamName:String)
语言版本: | ActionScript 3.0 |
产品版本: | Expression Manager Building Block 9.5 |
运行时版本: | Flash Player 10.2, AIR (unsupported) |
Constructor of expression evaluation service.
参数defaultSwfUrl:String — URL of the SWF.
| |
expressionDefinitionParamName:String — parameter name used in SWF url.
|
evaluateExpression | () | 方法 |
public function evaluateExpression(expression:String, expressionDefinitionId:String, varsMap:Object, qualifiedClassName:String):Object
语言版本: | ActionScript 3.0 |
产品版本: | Expression Manager Building Block 9.5 |
运行时版本: | 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.
参数
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 | () | 方法 |
public function registerExpressionsUsingBytesLoader(expressionDefinitionId:String, swfBytes:ByteArray, lazyLoad:Boolean = false):void
语言版本: | ActionScript 3.0 |
产品版本: | Expression Manager Building Block 9.5 |
运行时版本: | Flash Player 10.2, AIR (unsupported) |
Used to load swf from the specified byte array.
参数
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 | () | 方法 |
public function registerExpressionsUsingLoader(expressionDefinitionId:String, expressionLoader:IExpressionLoader, lazyLoad:Boolean = false):void
语言版本: | ActionScript 3.0 |
产品版本: | Expression Manager Building Block 9.5 |
运行时版本: | Flash Player 10.2, AIR (unsupported) |
Used to load swf using a custom loader. The custom loader is required to implement IExpressionLoader.
参数
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 | () | 方法 |
public function registerExpressionsUsingUrlLoader(expressionDefinitionId:String, swfUrl:String, urlVars:Object = null, lazyLoad:Boolean = false):void
语言版本: | ActionScript 3.0 |
产品版本: | Expression Manager Building Block 9.5 |
运行时版本: | 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.
参数
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 | 事件 |
com.adobe.exm.expression.event.ExpressionRegistrationFailureEvent
语言版本: | ActionScript 3.0 |
产品版本: | Expression Manager Building Block 9.5 |
运行时版本: | Flash Player 10.2, AIR (unsupported) |
Dispatched when the registration of the expression SWF fails.
expressionRegistrationSuccess | 事件 |
com.adobe.exm.expression.event.ExpressionRegistrationSuccessEvent
语言版本: | ActionScript 3.0 |
产品版本: | Expression Manager Building Block 9.5 |
运行时版本: | Flash Player 10.2, AIR (unsupported) |
Dispatched when the expression SWF is successfully registered.
Tue Jun 12 2018, 11:04 AM Z