Stage - no_scale

Hello flashers…

I’m trying to prevent my stage from scaling when my site is viewed on a large monitor. In the Publish settings and on the html tab, my dimensions are set to 100 percent for the width and height.

Now,I do want to keep my dimensions as 100 percent for the width and height, but I never want the stage to scale regardless of the monitor size.

the following code don’t seem to be working:

import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.display.Stage;
import flash.display.Sprite;

var myStage:Stage;

myStage = this.stage;
myStage.align = StageAlign.TOP_LEFT;
myStage.scaleMode = StageScaleMode.NO_SCALE;

thanks for any guidance…

x lisa x