Microcosm

space.BitmapData.applyFilter( space, space.rect, _zeroPoint, _blurFilter );
_canvas.colorTransform( space.rect, _alphaTransform );
_zeroPoint = new Point;

if(Planet(space.getChildAt(i)).x > 465){
Planet(space.getChildAt(i)).x = 465;
Planet(space.getChildAt(i)).pX *= -0.9;
}
else if(Planet(space.getChildAt(i)).x < 0){
Planet(space.getChildAt(i)).x = 0;
Planet(space.getChildAt(i)).pX *= -0.9;
}
if(Planet(space.getChildAt(i)).y > 465){
Planet(space.getChildAt(i)).y = 465;
Planet(space.getChildAt(i)).pY *= -0.9;
}
else if(Planet(space.getChildAt(i)).y < 0){
Planet(space.getChildAt(i)).y = 0;
Planet(space.getChildAt(i)).pY *= -0.9;
}

TweenMax.to(p, 0, {colorTransform:{tint:0xffffff, tintAmount:0.5, exposure:2, brightness:0.5}, ease:Quad.easeOut});