hi there,
i am doing my site and i wanted to have the site to fit full browser but the script i am using stretches across which is kinda distorted. Anyway to fix this? thanks.
stop();
this.onResize = function() {
//-- Called when browser is resized.
this.green_mc._x = (Stage.width/2)-(this.green_mc._width/2);
this.green_mc._y = (Stage.height/2)-(this.green_mc._height/2);
this.green_mc = Stage.width+"x"+Stage.height;
};
Stage.scaleMode = "exactFit";
Stage.align = "TL";
Stage.showMenu = false;
Stage.addListener(this);
this.onResize();