Object.registerClass()
667
Object.registerClass()
Availability
Flash Player 6. If you are using ActionScript 2.0 classes, you can use the ActionScript 2.0 Class
field in the Linkage Properties or Symbol Properties dialog box to associate an object with a class
instead of using this method. For more information, see “Assigning a class to a movie clip
symbol”. in
Using ActionScript in Flash
.
Usage
Object.registerClass(
symbolID:String
,
theClass:Function
)
: Boolean
Parameters
symbolID
String; the linkage identifier of the movie clip symbol or the string identifier for the
ActionScript class.
theClass
A reference to the constructor function of the ActionScript class or
null
to
unregister the symbol.
Returns
A Boolean value: if the class registration succeeds, a value of
true
is returned;
false
otherwise.
Description
Method; associates a movie clip symbol with an ActionScript object class. If a symbol doesn’t
exist, Flash creates an association between a string identifier and an object class.
When an instance of the specified movie clip symbol is placed on the Timeline, it is registered to
the class specified by the
theClass
parameter rather than to the class MovieClip.
When an instance of the specified movie clip symbol is created by using
MovieClip.attachMovie()
or
MovieClip.duplicateMovieClip()
, it is registered to the class specified by
theClass
rather than
to the MovieClip class. If
theClass
is
null
, this method removes any ActionScript class
definition associated with the specified movie clip symbol or class identifier. For movie clip
symbols, any existing instances of the movie clip remain unchanged, but new instances of the
symbol are associated with the default class MovieClip.
If a symbol is already registered to a class, this method replaces it with the new registration.
When a movie clip instance is placed by the Timeline or created using
attachMovie()
or
duplicateMovieClip()
, ActionScript invokes the constructor for the appropriate class with the
keyword
this
pointing to the object. The constructor function is invoked with no parameters.
If you use this method to register a movie clip with an ActionScript class other than MovieClip,
the movie clip symbol doesn’t inherit the methods, properties, and events of the built-in
MovieClip class unless you include the MovieClip class in the prototype chain of the new class.
The following code creates a new ActionScript class called
theClass
that inherits the properties
of the MovieClip class:
theClass.prototype = new MovieClip();
See also
MovieClip.attachMovie()
,
MovieClip.duplicateMovieClip()
Summary of Contents for FLASH MX 2004-ACTIONSCRIPT LANGUAGE
Page 1: ...ActionScript Language Reference...
Page 20: ...20 Contents...
Page 24: ...24 Chapter 1 Introduction...
Page 145: ...Button onKeyDown 145 See also Button onKeyUp...
Page 186: ...186 Chapter 2 ActionScript Language Reference See also Camera onActivity Camera setMotionLevel...
Page 202: ...202 Chapter 2 ActionScript Language Reference See also break default strict equality switch...
Page 282: ...282 Chapter 2 ActionScript Language Reference See also break continue while...
Page 383: ...LoadVars addRequestHeader 383 See also XML addRequestHeader...
Page 388: ...388 Chapter 2 my_lv load place a valid URL pointing to a text file here...
Page 463: ...Microphone setRate 463 See also Microphone rate...
Page 469: ...Microphone silenceLevel 469 See also Microphone gain Microphone setSilenceLevel...
Page 480: ...480 Chapter 2 ActionScript Language Reference See also Mouse addListener...
Page 529: ...MovieClip globalToLocal 529 See also MovieClip getBounds MovieClip localToGlobal...
Page 612: ...612 Chapter 2 ActionScript Language Reference See also MovieClipLoader onLoadStart...
Page 623: ...NetConnection class 623 See also NetStream class Video attachVideo...
Page 649: ...Number 649 See also NaN Number class...
Page 679: ...on 679 on release trace X this _x trace Y this _y stopDrag See also onClipEvent...
Page 683: ...onUpdate 683 buttonLabel textColor my_mc labelColor...
Page 788: ...788 Chapter 2 ActionScript Language Reference See also private public...
Page 1001: ...Video height 1001 my_mc _height my_mc my_video height See also MovieClip _height Video width...
Page 1022: ...1022 Chapter 2 ActionScript Language Reference See also XML createElement...
Page 1057: ...XML xmlDecl 1057 See also XML docTypeDecl XML toString...
Page 1070: ...1070 Chapter 2 ActionScript Language Reference...