hi ppl,
iam making a webpage witch is resizable on every browser resolution, the problem is that if the resolution is less then 1024768 all buttons and other components like text and so, will appear on top of other buttons, so i want that the page will stay resizable, but when the screen is less then the resolution of 1024768 will appear the scrolls on the browser and the webpage stays the same.
i tried severel javascript like swfobject and swfforcerecize and swffit with no luck.
iam wondering if there is any trick that can do that? like something as:
Stage.addListener(this)
this.onResize = function() {
if (Stage.width < 1024 || Stage.height < 768) {
// the action that makes the scroll appear
trace ("size too small");
} else {
trace ("size OK");
}
}
any ideas? thx in advance.