Full screen problem

Hi,

I have used this AS to obtain full screen flash but the file does not work in firefox

var stageListener: Object = new Object();
stageListener.onResize = function() {
position();
};

Stage.align = “L”;
Stage.scaleMode = “noScale”;
Stage.addListener(stageListener);

function position() {
white._x = Stage.width/2
white1._x = Stage.width/2
}

position();

Is there any explanation and can anyone help?

Thanks in advance
J_Mo