not complete

by gameegg
i can't compile in my university..

[ERROR]Couldnt Connect with Server, Reconnecting...

X-(
♥0 | Line 46 | Modified 2013-04-01 15:25:48 | MIT License
play

ActionScript3 source code

/**
 * Copyright gameegg ( http://wonderfl.net/user/gameegg )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/cLzh
 */

package {
    import flash.display.Bitmap;
    import flash.display.BitmapData;
    import flash.text.TextField;
    import flash.display.Sprite;
    public class Pokjuk extends Sprite {
        
        private var bitd:BitmapData = new BitmapData(400,400,false,0xfff000);
        private var bit:Bitmap = new Bitmap(bitd);
        
        private var virtual3D:Sprite = new Sprite();
        
        public function Pokjuk() {
            bitd = new BitmapData(400,400,false,0xffffff);
            virtual3D.x = 200;
            virtual3D.y = 200;
            virtual3D.graphics.beginFill(0xfff000);
            virtual3D.graphics.drawRect(-100,-100,200,200);
            addChild(virtual3D);
            
            addChild(bit);
            
            
            
        }
    }
     
    
}


internal public class Dot
{

    public var x:Number;
    public var y:Number;
    public var z:Number;
    public var speedX:Number;
    public var speedY:Number;
    public var speedZ:Number;
    
    public function Dot(x:Number=0, y:Number=0, z:Number=0, speedX:Number=0, speedY:Number=0, speedZ:Number=0){
        this.x = x;
        this.y = y;
        this.z = z;
        this.speedX = speedX;
        this.speedY = speedY;
        this.speedZ = speedZ;
    }
    
    public function update(){
        this.x += this.speedX;
        this.y += this.speedY;
        this.z += this.speedZ;
    }
    
    public getVirtualX(){
        
    }
    public getVirtualY(){
        
    }
}