MACROMEDIA FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE Reference page 179

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

Advertisement

Statement
class
continue
default
delete
do..while
dynamic
else
else if
extends
for
for..in
function
get
if
implements
import
interface
intrinsic
private
Description
Defines a custom class, which lets you instantiate objects that share
methods and properties that you define.
Jumps past all remaining statements in the innermost loop and starts
the next iteration of the loop as if control had passed through to the
end of the loop normally.
Defines the default case for a switch statement.
Destroys the object reference specified by the reference parameter,
and returns true if the reference is successfully deleted; false
otherwise.
Similar to a while loop, except that the statements are executed once
before the initial evaluation of the condition.
Specifies that objects based on the specified class can add and
access dynamic properties at runtime.
Specifies the statements to run if the condition in the if statement
returns false.
Evaluates a condition and specifies the statements to run if the
condition in the initial if statement returns false.
Defines a class that is a subclass of another class; the latter is the
superclass.
Evaluates the init (initialize) expression once and then starts a
looping sequence.
Iterates over the properties of an object or elements in an array and
executes the statement for each property or element.
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.
Statements
179

Advertisement

Table of Contents
loading

Table of Contents