18.3 Built-in Classes and Objects

ActionScript for Flash MX: The Definitive Guide, 2nd Edition
By Colin Moock
Chapter 18.  ActionScript Language Reference

This Language Reference assumes that you understand the terms class, object, and instance, as discussed exhaustively in Chapter 12. The built-in classes of ActionScript are used to create objects that can control a movie and manipulate data. The built-in ActionScript classes added in Flash MX include:

Button
Function
LocalConnection
LoadVars
TextField
TextFormat

They join the Array, Boolean, Button, Color, Date, MovieClip, Number, Object, Sound, String, XML, XMLnode, and XMLSocket classes, which were also supported in Flash 5.

The MovieClip class is enhanced substantially in Flash 6. Most notably, an entire Drawing API and support for button events have been added.

To create an instance of a particular class, we use the class's constructor function with the new operator. For example, to make a new object of the Color class, we use the Color constructor as follows:

theColor = new Color(_root);

For each class entry in the Language Reference, the Constructor subheading shows how to create new objects of that particular class (i.e., it demonstrates each class's constructor function syntax). The class entry also includes a summary of the properties, methods, and event handlers available for objects in the class, along with a description of the class's purpose and typical use. Some classes also define methods or properties that are accessed through the class constructor itself, not individual instances. These methods and properties are listed as Class Methods and Class Properties. Full details for each class's properties, methods, and event handlers are given in an alphabetical list after each class's general introduction.

The built-in ActionScript objects added in Flash MX include:

Accessibility
Capabilities
SharedObject
Stage
System

They join the Arguments, Key, Math, Mouse and Selection objects, which were also supported in Flash 5. (See the Preface for notes on the CustomActions and LivePreview objects, which were added in Flash MX but are not covered in this Language Reference.) Objects are interspersed alphabetically with the class descriptions in this Language Reference but are distinguished by the word Object (e.g., Math Object). Unlike true classes, which use a constructor function to instantiate multiple objects, these standalone objects are never instantiated (i.e., they are not constructed with the new operator); rather, they are predefined objects that exist solely to collect related functionality into a single package. The Math object, for example, provides convenient access to common mathematical functions and constants.

     



    ActionScript for Flash MX. The Definitive Guide
    ActionScript for Flash MX: The Definitive Guide, Second Edition
    ISBN: 059600396X
    EAN: 2147483647
    Year: 2002
    Pages: 780
    Authors: Colin Moock

    flylib.com © 2008-2017.
    If you may any questions please contact us: flylib@qtcs.net