Frame 1
function myfilter() {
var _local2 = [-5, -8 - Math.floor(Math.random() * 3), -4, -4, 122, -9, -7, -8, -3];
var _local3 = new flash.filters.ConvolutionFilter(3, 3, _local2, 75, 2);
_root.bmp_fill_mc.filters = [_local3];
}
rt_width = 800;
rt_height = 600;
var bmpd = (new flash.display.BitmapData(rt_width, rt_height));
t = 0;
_root.onLoad = function () {
_root.onMouseDown();
};
_root.onMouseDown = function () {
_root.t = getTimer();
var _local5 = new flash.geom.Rectangle(0, 0, rt_width * 0.5, rt_height * 0.5);
var _local4 = new flash.geom.Rectangle(0, rt_height * 0.5, rt_width * 0.5, rt_height);
var _local3 = new flash.geom.Rectangle(rt_width * 0.5, 0, rt_width, rt_height * 0.5);
var _local2 = new flash.geom.Rectangle(rt_width * 0.5, rt_height * 0.5, rt_width, rt_height);
bmpd.fillRect(_local5, 300871406);
bmpd.fillRect(_local4, 296397482);
bmpd.fillRect(_local3, 4294967295);
bmpd.fillRect(_local2, 4287137928);
};
_root.onMouseMove = function () {
};
this.createEmptyMovieClip("bmp_fill_mc", this.getNextHighestDepth());
_root.onEnterFrame = function () {
myfilter();
with (bmp_fill_mc) {
clear();
matrix = new flash.geom.Matrix();
sp = 0.5 - (0.48 * Math.cos(((getTimer() - _root.t) * 0.0003) - 0.1));
pivotx = ((sp * rt_width) * 0.5) * Math.sin(getTimer() * 0.0013);
pivoty = (((-sp) * rt_height) * 0.5) * Math.cos(getTimer() * 0.0013);
pivotx = pivotx + (rt_width * 0.5);
pivoty = pivoty + (rt_height * 0.5);
matrix.translate(-pivotx, -pivoty);
scale = 1.050981963914;
matrix.scale(scale, scale);
matrix.rotate(0.0329867228626928);
matrix.translate(pivotx, pivoty);
repeat = true;
smoothing = true;
beginBitmapFill(bmpd, matrix, repeat, smoothing);
moveTo(0, 0);
lineTo(0, rt_height);
lineTo(rt_width, rt_height);
lineTo(rt_width, 0);
lineTo(0, 0);
endFill();
}
bmp_fill_mc._xscale = 100;
bmp_fill_mc._yscale = 100;
bmpd.draw(bmp_fill_mc, new flash.geom.Matrix(), new flash.geom.ColorTransform(), "normal", bmpd.rectangle, true);
};