Package | com.adobe.exm.expression.impl |
Class | public class ExpressionEvaluationService |
Inheritance | ExpressionEvaluationService EventDispatcher Object |
Implements | IExpressionEvaluationService |
Language Version: | ActionScript 3.0 |
Product Version: | Expression Manager Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Method | Defined By | ||
---|---|---|---|
Constructor. | ExpressionEvaluationService | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener
receives notification of an event. | EventDispatcher | ||
Dispatches an event into the event flow. | EventDispatcher | ||
evaluateExpression(expression:String, expressionDefinitionId:String, varsMap:Object, qualifiedClassName:String):Object
Evaluates an expression in a Flex application. | ExpressionEvaluationService | ||
Checks whether the EventDispatcher object has any listeners registered for a specific type
of event. | EventDispatcher | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
registerExpressionsUsingBytesLoader(expressionDefinitionId:String, swfBytes:ByteArray, lazyLoad:Boolean = false):void
Loads a SWF from the specified byte array. | ExpressionEvaluationService | ||
registerExpressionsUsingLoader(expressionDefinitionId:String, expressionLoader:IExpressionLoader, lazyLoad:Boolean = false):void
Loads a SWF using a custom loader. | ExpressionEvaluationService | ||
registerExpressionsUsingUrlLoader(expressionDefinitionId:String, swfUrl:String, urlVars:Object = null, lazyLoad:Boolean = false):void
Loads the expression SWF from the specified URL. | ExpressionEvaluationService | ||
Removes a listener from the EventDispatcher object. | EventDispatcher | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of
its ancestors for the specified event type. | EventDispatcher |
Event | Summary | Defined By | ||
---|---|---|---|---|
[broadcast event] Dispatched when the Flash Player or AIR application gains operating system focus and becomes active. | EventDispatcher | |||
[broadcast event] Dispatched when the Flash Player or AIR application operating loses system focus and is becoming inactive. | EventDispatcher | |||
Dispatched when the registration of the expression SWF fails. | ExpressionEvaluationService | |||
Dispatched when the expression SWF is successfully registered. | ExpressionEvaluationService |
ExpressionEvaluationService | () | Constructor |
public function ExpressionEvaluationService(defaultSwfUrl:String, expressionDefinitionParamName:String)
Language Version: | ActionScript 3.0 |
Product Version: | Expression Manager Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Constructor.
ParametersdefaultSwfUrl:String — The URL of the SWF.
| |
expressionDefinitionParamName:String — parameter name used in SWF url.
|
evaluateExpression | () | method |
public function evaluateExpression(expression:String, expressionDefinitionId:String, varsMap:Object, qualifiedClassName:String):Object
Language Version: | ActionScript 3.0 |
Product Version: | Expression Manager Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Evaluates an expression in a Flex application.
If the SWF file is not loaded or the evaluation generates an error, an ExpressionEvaluationError
value is thrown.
Parameters
expression:String — The expression to evaluate.
| |
expressionDefinitionId:String — The unique ID that is used to load the expression SWF into a Flex application.
| |
varsMap:Object — The map that contains the variables used in expressions.
| |
qualifiedClassName:String — The name of the ActionScript class that contains expressions. This name is passed to the generateSWF class when the SWF is generated.
|
Object — The value of the expression after evaluation.
|
registerExpressionsUsingBytesLoader | () | method |
public function registerExpressionsUsingBytesLoader(expressionDefinitionId:String, swfBytes:ByteArray, lazyLoad:Boolean = false):void
Language Version: | ActionScript 3.0 |
Product Version: | Expression Manager Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Loads a SWF from the specified byte array.
Parameters
expressionDefinitionId:String — The unique identifier that is used to evaluate expressions contained in this SWF later.
| |
swfBytes:ByteArray — The byte[] that contains the SWF.
| |
lazyLoad:Boolean (default = false ) — If the value is true , the SWF is loaded when the first expression is evaluated.
|
registerExpressionsUsingLoader | () | method |
public function registerExpressionsUsingLoader(expressionDefinitionId:String, expressionLoader:IExpressionLoader, lazyLoad:Boolean = false):void
Language Version: | ActionScript 3.0 |
Product Version: | Expression Manager Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Loads a SWF using a custom loader. The custom loader is required to implement IExpressionLoader.
Parameters
expressionDefinitionId:String — The unique identifier that is used for evaluating expressions contained in this SWF later.
| |
expressionLoader:IExpressionLoader — The custom expression loader that is used to load a SWF.
| |
lazyLoad:Boolean (default = false ) — If the value is true , the SWF is loaded when the first expression is evaluated.
|
registerExpressionsUsingUrlLoader | () | method |
public function registerExpressionsUsingUrlLoader(expressionDefinitionId:String, swfUrl:String, urlVars:Object = null, lazyLoad:Boolean = false):void
Language Version: | ActionScript 3.0 |
Product Version: | Expression Manager Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Loads the expression SWF from the specified URL. urlVars can be used to specify URL parameters.
The SWF is registered with the specified expressionDefinitionId. Passing this identifier is required when evaluating expressions.
Parameters
expressionDefinitionId:String — The unique identifier that is used to evaluate expressions contained in this SWF later.
| |
swfUrl:String — The URL of the SWF.
| |
urlVars:Object (default = null ) — The URL variables.
| |
lazyLoad:Boolean (default = false ) — If the value is true , the SWF is loaded when the first expression is evaluated.
|
expressionRegistrationFailure | Event |
com.adobe.exm.expression.event.ExpressionRegistrationFailureEvent
Language Version: | ActionScript 3.0 |
Product Version: | Expression Manager Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Dispatched when the registration of the expression SWF fails.
expressionRegistrationSuccess | Event |
com.adobe.exm.expression.event.ExpressionRegistrationSuccessEvent
Language Version: | ActionScript 3.0 |
Product Version: | Expression Manager Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Dispatched when the expression SWF is successfully registered.
Wed Nov 21 2018, 06:34 AM -08:00