Object - MACROMEDIA FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE Reference

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

Advertisement

Object

Object
public class Object
The Object class is at the root of the ActionScript class hierarchy. This class contains a small
subset of the features provided by the JavaScript Object class.
Availability: ActionScript 1.0; Flash Lite 2.0 - (became a native object in Flash Player 6,
which improved performance significantly).
Property summary
Modifiers
Property
constructor:Object
__proto__:Object
static
prototype:Object
__resolve:Object
Constructor summary
Signature
Description
Creates an Object object and stores a reference to the object's
Object()
constructor method in the object's constructor property.
Method summary
Modifiers
Signature
addProperty(name:String,
getter:Function, setter:Function)
:
hasOwnProperty(name:String) :
Boolean
isPropertyEnumerable(name:String)
:
550
ActionScript classes
Boolean
Boolean
Description
Reference to the constructor function for a
given object instance.
Refers to the prototype property of the class
(ActionScript 2.0) or constructor function
(ActionScript 1.0) used to create the object.
A reference to the superclass of a class or
function object.
A reference to a user-defined function that is
invoked if ActionScript code refers to an
undefined property or method.
Description
Creates a getter/setter property.
Indicates whether an object has a
specified property defined.
Indicates whether the specified
property exists and is enumerable.

Advertisement

Table of Contents
loading

Table of Contents