I would really appreciate some help with this.
I had an .swf file that was full-browser, and it worked perfectly fine until I updated my browser Flash plug-in to version 8. Now, the .swf does not fit in the browser. It gets cut off on the sides and does not resize to fit the browser proportionally, as it’s supposed to.
Here is a link to the site: http://aly.50webs.com/
Here is the code I am using:
Stage.showMenu = false;
this.onResize = function()
{
//-- Called when browser is resized.
_parent._root.bgcolor._width = Stage.width;
_parent._root.bgcolor._height = Stage.height;
myListener2 = new Object();
myListener2.onResize = function () {
_parent._root.bgcolor._width = Stage.width;
_parent._root.bgcolor._height = Stage.height;
Xpos = Stage.width/2;
Ypos = Stage.height/2;
_parent._root.clip._x = Xpos;
_parent._root.clip._y = Ypos;
};
Stage.addListener(myListener2);
};
Stage.scaleMode = "noScale";
Stage.addListener(this);
this.onResize();
Please please, I would really appreciate some help. I also posted this in the stickied Flash 8 bugs thread.
Thanks.