Full browser flash problem

Hi,

I’m using the full browser flash method as described on http://www.gotoandlearn.com/ to position a movie clip in the center of the stage. This works fine but I’m having issues with retaining the crispness of lines and pixel fonts.

The method I’m using is

Stage.scaleMode = “noScale”;
Stage.align = ‘LT’;

center._x = Stage.width / 2 - 500 ;
center._y = Stage.height / 2 - 286;

var stageL:Object = new Object();
stageL.onResize = function() {

center._x = -500 + Stage.width / 2;
center._y = - 286 + Stage.height / 2;
}
Stage.addListener(stageL);
_root.center.loadMovie (“main.swf”);

Does anyone know a fix for this. I guess its something to do with the position being determined by the stage width or height / 2 but if this is an odd number it leads to problems. Sorry to waffle. Any help much appreciated.