Browser auto resize itself

how a browser automatically resize itself, once visitors type in the link ? and no rescale allowed.
i know the way to open a fixed size pop up window, but i haven’t seen any tutorial about auto-resize browser ?

This isn’t an Actionscript related question, it would be more of an HTML/CSS/Javascript issue. I’d post in a more appropriate place. I’m sure someone in here will know the answer though…since its programming and the AS people are more likely to care about that then others might.

try something like this:

[AS]
on (release) {
getURL(“javascript:self.resizeTo(screen.availWidth,screen.availHeight);”);
getURL(“javascript:self.moveTo(0,0);”);
}
[/AS]

you can change the ‘screen.availWidth’ to a specific dimention such as 400