Frame 1
var sWidth = 590;
var sHeight = 300;
bmpm = new flash.display.BitmapData(sWidth / 2, sHeight / 2, true, 0);
dbmpm = new flash.display.BitmapData(sWidth, sHeight, true, 0);
bFilter = new flash.filters.BlurFilter(4, 4, 1);
attachBitmap(dbmpm, _root.getNextHighestDepth());
seed = random(9000);
onEnterFrame = function () {
var _local5 = new flash.geom.Point(bmpm.width * Math.sin(getTimer() / 5000), bmpm.height * Math.cos(getTimer() / 5000));
var _local4 = new flash.geom.Point(((-bmpm.width) * Math.cos(getTimer() / 20000)) * Math.sin(getTimer() / 10000), 0);
var _local3 = new flash.geom.Point(bmpm.width * Math.sin(getTimer() / 10000), (bmpm.height * Math.cos(getTimer() / 3000)) * Math.sin(getTimer() / 10000));
bmpm.perlinNoise(bmpm.width / 1, bmpm.height / 1, 3, seed, false, true, 3, false, [_local5, _local4, _local3]);
var _local1 = 9474048 /* 0x909000 */;
var _local2 = _local1 + 571083274;
bmpm.threshold(bmpm, bmpm.rectangle, new flash.geom.Point(), "<=", _local1, 0, 16777215, false);
bmpm.threshold(bmpm, bmpm.rectangle, new flash.geom.Point(), ">", _local2, 0, 16777215, false);
dbmpm.draw(bmpm, new flash.geom.Matrix(dbmpm.width / bmpm.width, 0, 0, dbmpm.height / bmpm.height, 0, 0), new flash.geom.ColorTransform(222, 1, 1, 1, 10, 0, 22, 0), "normal", null, true);
dbmpm.applyFilter(dbmpm, dbmpm.rectangle, new flash.geom.Point(0, 0), bFilter);
};
box_mc.swapDepths(1000000);
textinfo.swapDepths(10000001);