Hi Guys,
Got a slight problem with getting a mask that covers my stage to scale when the browser window is resized.
Basically when the browser window is resized i need the stage to resize with it, and the mask that covers the stage to resize with it to, so it shows more and more of the bg and elements can scale to the width of the entire stage.
Heres where i am on the first frame of the main timeline:
stop();
Stage.align = “TL”;
Stage.scaleMode = “noScale”;
sizeListener = new Object();
sizeListener.onResize = function() {
_root.mc_menu_all.mc_menu_bg._width = Stage.width;
_root.mc_menu_all._y = Stage.height/1.7;
_root.mc_logo._y = _root.mc_menu_all._y+80;
_root.mc_mask_main._width = Stage.width;
_root.mc_mask_main._height = Stage.height;
};
Stage.addListener(sizeListener);
I don’t know if it matters whether i have more than 1 frame on the root timeline, or whether i have to call the script everytime?
If anyone can help with why the above code is not working its much appreciated (got a presentation tomorrow!
Can be seen here http://testsite.imageview.co.uk/djh/site.html
Cheers,
Pat