topical media & game development
actionscript-book-SpriteArranger-com-example-programmingas3-spritearranger-SquareSprite.ax
actionscript-book-SpriteArranger-com-example-programmingas3-spritearranger-SquareSprite.ax
[swf]
flex
package // com.example.programmingas3.spritearranger
{
//import com.example.programmingas3.geometricshapes.Square;
import flash.events.MouseEvent;
public class @ax-actionscript-book-SpriteArranger-com-example-programmingas3-spritearranger-SquareSprite extends actionscript_book_SpriteArranger_com_example_programmingas3_spritearranger_GeometricSprite
{
public function @ax-actionscript-book-SpriteArranger-com-example-programmingas3-spritearranger-SquareSprite(size:Number = 100, lColor:Number = 0x000000, fColor:Number = 0xCCEECC)
{
super(size, lColor, fColor);
this.shapeType = "Square";
this.geometricShape = new actionscript_book_SpriteArranger_com_example_programmingas3_geometricshapes_Square(size);
drawShape();
}
public override function drawShape():void
{
this.graphics.clear();
this.graphics.lineStyle(1.0, this.lineColor, 1.0);
this.graphics.beginFill(this.fillColor, 1.0);
this.graphics.drawRect(0, 0, this.size, this.size);
}
}
}
(C) Æliens
27/08/2009
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.