Full Screen Gradient

I have the following code and everything works great in test mode. But when I embed the images into an HTML page the width does not fill the page. The stange thing other objects in other swfs have no trouble filling to width.

The only difference is…

Stage.align = “TL”

Question 2…If I need to use Stage.align = “TL” all the other swf loaded into this swf are now aligned TL not centered. Do I need to compensate by readjusting my center points in the other swfs?

function gradientFill () {
    this.createEmptyMovieClip ("gradient_mc", 1);
    with (gradient_mc) {
        colors = [0xFFFFFF, 0x333333];
        alphas = [100, 100];
        ratios = [0, 0xFF];
        matrix = {matrixType:"box", x:0, y:0, w:Stage.width, h:Stage.height, r:(90 / 180) * Math.PI};
        beginGradientFill ("linear", colors, alphas, ratios, matrix);
        moveTo (0, 0);
        lineTo (0, Stage.width);
        lineTo (Stage.width, Stage.width);
        lineTo (Stage.width, 0);
        lineTo (0, 0);
        endFill ();
    }
}
var stageL:Object = new Object ();
stageL.onResize = function () {
    gradientFill ();
};
Stage.addListener

[URL=“file:///C:/Documents%20and%20Settings/Temp/Application%20Data/Microsoft/Internet%20Explorer/Quick%20Launch/Crystal%20Reports.lnk”]