Show
Ignore:
Timestamp:
06/13/08 22:21:12 (5 years ago)
Author:
suztomo
Message:

lang/actionscript/FPazzle : added directory for class files.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/actionscript/FPazzle/trunk/src/Fpazzle.mxml

    r13825 r13826  
    33        <mx:Script> 
    44                <![CDATA[ 
    5                         import mx.core.UIComponent; 
    6  
     5                import mx.core.UIComponent; 
     6                import net.suztomo.FPazzle.*; 
    77                public function init():void { 
    88                        var container:UIComponent = new UIComponent(); 
     
    1515                        txt.y = 500; 
    1616 
    17 /*                      var rect:Rectangle = new Rectangle(0, 0, 141, 100);*/ 
    18                         var sprite:Sprite = new Sprite; 
     17                        var sprite:FPiece = new FPiece; 
    1918                        sprite.graphics.beginFill(0x551199, 1); 
    2019                        sprite.graphics.drawRect(100, 120, 141, 100); 
     20                        sprite.rotation = 12; 
    2121                        container.addChild(sprite); 
    2222                        trace(); 
    2323                } 
     24 
    2425 
    2526                ]]>