CasaMovieClip
| Kind of class: | public dynamic class |
|---|---|
| Package: | org.casalib.display |
| Inherits from: | MovieClip |
| Implements: | |
| Known subclasses: | |
| Version: | 05/29/09 |
| Author: | Aaron Clinger, Mike Creighton |
| Classpath: | org.casalib.display.CasaMovieClip |
| File last modified: | Sunday, 14 June 2009, 19:20:33 |
A base MovieClip that implements IRemovableEventDispatcher and ICasaDisplayObjectContainer.
Summary
Constructor
Instance properties
Instance methods
- removeEventsForType (type:String) : void
- Removes all events of a specific type.
- removeEventsForListener (listener:Function) : void
- Removes all events that report to the specified listener.
- removeEventListeners : void
- Removes all event listeners.
- removeChildren (destroyChildren:Boolean = false, recursive:Boolean = false) : void
- Removes and optionally destroys children of the CasaMovieClip.
- removeChildrenAndDestroy (destroyChildren:Boolean = false, recursive:Boolean = false) : void
- Removes and optionally destroys children of the CasaMovieClip then destroys itself.
- destroy : void
- Removes any event listeners and stops all internal processes to help allow for prompt garbage collection.
- removeChildren (destroyChildren:Boolean = false, recursive:Boolean = false) : void
Constructor
CasaMovieClip
public function CasaMovieClip ()Creates a new CasaMovieClip.Instance properties
destroyed
public destroyed:Boolean(read)stage
override public stage:Stage(read)The Stage of the display object or if the display object is not added to the display list and StageReference is definedstagewill return the default stage; otherwisenull.Instance methods
destroy
public function destroy () : voidRemoves any event listeners and stops all internal processes to help allow for prompt garbage collection.#
Always callstagebefore deleting last object pointer.
Callingdestroy()on a CASA display object also removes it from its current parent.Specified by:removeChildren
public function removeChildren (destroyChildren:Boolean = false, recursive:Boolean = false) : voidRemoves and optionally destroys children of the CasaMovieClip.Parameters:destroyChildren:If a child implements IDestroyable call its destroy methodtrue, or don't destroyfalse; defaults tofalse.recursive :Call this method with the same arguments on all of the children's children (all the way down the display list)true, or leave the children's childrenfalse; defaults tofalse.removeChildrenAndDestroy
public function removeChildrenAndDestroy (destroyChildren:Boolean = false, recursive:Boolean = false) : voidRemoves and optionally destroys children of the CasaMovieClip then destroys itself.Parameters:destroyChildren:If a child implements IDestroyable call its destroy methodtrue, or don't destroyfalse; defaults tofalse.recursive :Call this method with the same arguments on all of the children's children (all the way down the display list)true, or leave the children's childrenfalse; defaults tofalse.removeEventListeners
public function removeEventListeners () : voidRemoves all event listeners.#Specified by:removeEventsForListener
public function removeEventsForListener (listener:Function) : voidRemoves all events that report to the specified listener.#Parameters:listener:The listener function that processes the event.#Specified by: - removeEventListeners : void
- removeEventsForListener (listener:Function) : void