Вот этот код... Подскажите пожалуйста как проще сделать?!

Код:
import flash.display.*;
import flash.geom.*;
//
Stage.scaleMode = "noScale";
Stage.align = "TL";
onResize = function () {
var myBitmapData:BitmapData = BitmapData.loadBitmap("libBitmap");
this.createEmptyMovieClip("bmp_fill_mc", 1);
this["bmp_fill_mc"].swapDepths(this["btm"]);
with (bmp_fill_mc) {
matrix = new Matrix();
repeat = true;
smoothing = false;
beginBitmapFill(myBitmapData, matrix, repeat, smoothing);
moveTo(0, 0);
lineTo(0, Stage.height);
lineTo(Stage.width, Stage.height);
lineTo(Stage.width, 0);
lineTo(0, 0);
endFill();
}
};
Stage.addListener(this);
onResize();