My class extends or inherits from MovieClip. When I make an instance of it in Flash, why doesn it show up on the stage?
The Quick: Instantiation of MovieClip instances (and subclasses of MovieClip) are are not handled through the new keyword. Instead, instantiation is automatic as a result of the movie clip representing that class being created in your scene, either through placement on the timeline or through attachMovie()/duplicateMovieClip(). The Details: The way Flash handles class instances with movie clips is a little non-intuitive and contradicts how classes and visual elements work in other programming languages such as Java. Because MovieClip instances have this inherent connection with a visual element (a movie clip) within the Flash document, basic class instantiation through the use of the new keyword won’t cut it since creating new instances in this manner only creates instances in memory that have no association with the timeline other than a variable returned from the constructor used to access the object created. Creating movie clips requires another level of instantiation that, through