CoreMovieClip
| Kind of class: | class |
|---|---|
| Inherits from: | MovieClip |
| Implements: | |
| Known subclasses: | |
| Version: | 11/18/06 |
| Author: | Aaron Clinger |
| Classpath: | org.casaframework.movieclip.CoreMovieClip |
| File last modified: | Wednesday, 24 January 2007, 21:45:39 |
A core MovieClip to inherent from which extends Flash's built-in MovieClip class.
All MovieClip classes should extend from here.Summary
Instance methods
Instance methods
destroy
function destroy (
) : Void
Removes internal variables, intervals, enter frames, internal MovieClips and event observers to allow the object to be garbage collected.
Always call
#Always call
destroy() before deleting/removing object instance.Specified by:
removeMovieClip
function removeMovieClip (
) : Void
Removes a MovieClip created with
duplicateMovieClip(), createEmptyMovieClip(), or attachMovie() after calling destroy.Usage note:
removeMovieClip automatically calls destroy before removing.