() (Parentheses) - MACROMEDIA FLASH 8-FLASH LITE 1.X ACTIONSCRIPT LANGUAGE Reference

Flash lite 1.x actionscript language reference
Hide thumbs Also See for FLASH 8-FLASH LITE 1.X ACTIONSCRIPT LANGUAGE:
Table of Contents

Advertisement

Example
The following examples show
and
results for numeric comparisons:
true
false
trace(5 <= 10);// output: 1(true)
trace(2 <= 2);// output: 1(true)
trace (10 <= 3);// output: 0 (false)
See also
le (string less than or equal to)

() (parentheses)

Availability
Flash Lite 1.0.
Usage
(expression1 [, expression2])
(expression1, expression2)
Numbers, strings, variables, or text.
expression1, expression2
A series of parameters to execute before the results are
parameter1,..., parameterN
passed as parameters to the function outside the parentheses.
Description
Operator; groups one or more parameters, performs sequential evaluation of expressions, or
surrounds one or more parameters and passes them as parameters to a function outside the
parentheses.
Usage 1: Controls the order in which the operators execute in the expression. Parentheses
override the normal precedence order and cause the expressions within the parentheses to be
evaluated first. When parentheses are nested, the contents of the innermost parentheses are
evaluated before the contents of the outer ones.
Usage 2: Evaluates a series of expressions, separated by commas, in sequence, and returns the
result of the final expression.
() (parentheses)
101

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLASH 8-FLASH LITE 1.X ACTIONSCRIPT LANGUAGE and is the answer not in the manual?

Table of Contents