When working in flash I can control size of my web like so (and other alignments):
some_background.width = stage.stageWidth;
some_background.height = stage.stageHeight;
And with resize and fullscreen functions web is always going to populate size of a flash window.
And lets say I make 1280x1024 web, when I publish it, it is going to be that size in a browser window.
But how do I make it fir browser windows completely whatever the size of it?
Where am I making the mistake?