CasaMovieClip
| Kind of class: | public class |
|---|---|
| Package: | org.casalib.display |
| Inherits from: | MovieClip |
| Implements: | |
| Known subclasses: | |
| Version: | 10/27/08 |
| Author: | Aaron Clinger |
| Classpath: | org.casalib.display.CasaMovieClip |
| File last modified: | Monday, 01 December 2008, 11:16:36 |
A base MovieClip that implements IRemovableEventDispatcher and IDestroyable.
Summary
Constructor
Instance properties
- destroyed : Boolean
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.
- destroy : void
- Removes any event listeners and stops all internal processes to help allow for prompt garbage collection.
- destroy : void
Constructor
CasaMovieClip
public function CasaMovieClip ()Creates a new CasaMovieClip.Instance properties
destroyed
public destroyed:Boolean(read)Instance methods
destroy
public function destroy () : voidRemoves any event listeners and stops all internal processes to help allow for prompt garbage collection.#
Always calldestroy()before deleting last object pointer.
Callingdestroy()on a CASA display object also removes it from its current parent.Specified by: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