Show
Ignore:
Timestamp:
12/18/07 17:14:42 (13 months ago)
Author:
gyuque
Message:

added tool palette.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/legacy-actionscript/as2draw/AS2Draw.as

    r3255 r3273  
    22{ 
    33        private var mDrawable:Drawable; 
     4        private var mToolPalette:ToolPalette; 
    45 
    56        public function AS2Draw(aRoot:MovieClip) 
    67        { 
    7                 mDrawable = new Drawable(aRoot, 0xff8080, 480, 200); 
     8                mToolPalette = new ToolPalette(aRoot, 480, 24, 0x888888); 
     9 
     10                mDrawable    = new Drawable   (aRoot, 0xeeffdd, 480, 200); 
     11                mDrawable.setY(24); 
    812        } 
    913