Flash CS3 Documentation |
|||
| ActionScript 2.0 Language Reference > ActionScript classes > 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 Player 5 - (became a native object in Flash Player 6, which improved performance significantly).
|
Modifiers |
Property |
Description |
|---|---|---|
|
|
Reference to the constructor function for a given object instance. |
|
|
|
Refers to the |
|
|
|
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. |
|
Signature |
Description |
|---|---|
|
Object |
Creates an Object object and stores a reference to the object's constructor method in the object's |
|
Modifiers |
Signature |
Description |
|---|---|---|
|
|
addProperty |
Creates a getter/setter property. |
|
|
hasOwnProperty |
Indicates whether an object has a specified property defined. |
|
|
isPropertyEnumerable |
Indicates whether the specified property exists and is enumerable. |
|
|
isPrototypeOf |
Indicates whether an instance of the Object class is in the prototype chain of the object specified as an argument. |
|
|
registerClass |
Associates a movie clip symbol with an ActionScript object class. |
|
|
Converts the specified object to a string and returns it. |
|
|
|
Removes a watchpoint that |
|
|
|
Returns the primitive value of the specified object. |
|
|
|
watch |
Registers an event handler to be invoked when a specified property of an ActionScript object changes. |
Flash CS3