Statement
function
get
if
implements
import
interface
intrinsic
private
public
return
set
set variable
static
super
switch
throw
try..catch..finally
var
while
with
Description
Comprises a set of statements that you define to perform a certain
task.
Permits implicit getting of properties associated with objects based
on classes you have defined in external class files.
Evaluates a condition to determine the next action in a SWF file.
Specifies that a class must define all the methods declared in the
interface (or interfaces) being implemented.
Lets you access classes without specifying their fully qualified names.
Defines an interface.
Allows compile-time type checking of previously defined classes.
Specifies that a variable or function is available only to the class that
declares or defines it or to subclasses of that class.
Specifies that a variable or function is available to any caller.
Specifies the value returned by a function.
Permits implicit setting of properties associated with objects based
on classes you have defined in external class files.
Assigns a value to a variable.
Specifies that a variable or function is created only once per class
rather than being created in every object based on that class.
Invokes the superclass' version of a method or constructor.
Creates a branching structure for ActionScript statements.
Generates, or throws , an error that can be handled, or caught , by a
catch{} code block.
Enclose a block of code in which an error can occur, and then
respond to the error.
Used to declare local or Timeline variables.
Evaluates a condition and if the condition evaluates to true , runs a
statement or series of statements before looping back to evaluate the
condition again.
Lets you specify an object (such as a movie clip) with the object
parameter and evaluate expressions and actions inside that object
with the statement(s) parameter.
Statements
193
Need help?
Do you have a question about the FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE and is the answer not in the manual?