when you resize the browser window you’ll notice that the background pattern remains the same size but there’s never a browser-scrollbar, besides that the movie in the center that is loaded stays centered when resizing while keeping it’s window-dimension constant (it’s actually 2 seperate movies forming the center window).
Stage.onResize is the event
Stage.height and Stage.width give the info.
Stage.scaleMode=“noScale”;//no distortion or resizing
Stage.align = “” will center it, and you can use math to place the lower left logo in the corner like that.
The tricky part, having the background with no scrollbars, could be done with a scripted mask that would make only the part of the background that is in the window visible.
You would just have to say bgMask._width=Stage.width;
it took a while before i noticed what i was constantly missing
when trying to redo your file
it was the flash alignment in the publish settings (left and top)