Packagevegas.display
Classpublic class CoreMovieClip
InheritanceCoreMovieClip Inheritance flash.display.MovieClip
Implements IDisplayObject
Subclasses Root

The CoreMovieClip class extends the flash.display.MovieClip class and implements the IDisplayObject interface.

Example :

     import vegas.display.CoreMovieClip ;
     
     var mc:CoreMovieClip = new CoreMovieClip() ;
     
     mc.graphics.beginFill( 0xFF0000 , 100 ) ;
     mc.graphics.drawRect( 0, 0, 200, 160 ) ;
     
     addChild( mc ) ;
     



Public Properties
 PropertyDefined By
  logger : Logger
Determinates the internal ILogger reference of this Logable object.
CoreMovieClip
Public Methods
 MethodDefined By
  
Creates a new CoreMovieClip instance.
CoreMovieClip
  
isLocked():Boolean
Returns true if the object is locked.
CoreMovieClip
  
lock():void
Locks the object.
CoreMovieClip
  
resetLock():void
Reset the lock security of the display.
CoreMovieClip
  
unlock():void
Unlocks the display.
CoreMovieClip
Protected Methods
 MethodDefined By
  
addedToStage(e:Event = null):void
Invoked when the display is added to the stage.
CoreMovieClip
  
removedFromStage(e:Event = null):void
Invoked when the display is removed from the stage.
CoreMovieClip
Property Detail
loggerproperty
logger:Logger

Determinates the internal ILogger reference of this Logable object.


Implementation
    public function get logger():Logger
    public function set logger(value:Logger):void
Constructor Detail
CoreMovieClip()Constructor
public function CoreMovieClip()

Creates a new CoreMovieClip instance.

Method Detail
addedToStage()method
protected function addedToStage(e:Event = null):void

Invoked when the display is added to the stage.

Parameters

e:Event (default = null)

isLocked()method 
public function isLocked():Boolean

Returns true if the object is locked.

Returns
Booleantrue if the object is locked.
lock()method 
public function lock():void

Locks the object.

removedFromStage()method 
protected function removedFromStage(e:Event = null):void

Invoked when the display is removed from the stage.

Parameters

e:Event (default = null)

resetLock()method 
public function resetLock():void

Reset the lock security of the display.

unlock()method 
public function unlock():void

Unlocks the display.