[quote=mikel_26;2324068]HI GUYS !
I WANNA KNOW HOW TO MAKE A FLASH MOVIE THAT FITS IN ALL WINDOW ?
FOR
800 X 600
TO
1280 X 1024
EXAMPLE IF I MADE A
1024 X 768
FLASH MOVIE RUN INTO 800 X 600 RESOLUTION
IT SHOULD HAVE THE SAME QUALITY OF 1024 X 768
BUT RUNNING IN 800 X 768 RESOLUTION !!!
NOW HOW CAN I DO THIS ?
THERE ARE SOME SITE THAT HAS THIS CHARACTERISTIC AND I WONDER HOW DID THEY DO IT ?
just like this one !
http://www.billyharvey.com/
http://www.billyharvey.com/
http://www.billyharvey.com/
http://www.billyharvey.com/
http://www.billyharvey.com/
http://www.billyharvey.com/[/quote]
its called a liquid or fluid layout, all the objects are positioned using actionscript and a the Stage width and height properties.
You’ll need to create a listener for the resizing of the broswer, then position everything on the stage an example would be like this
//Header resizer
Stage.align = "tc";
Stage.scaleMode = "noScale";
var resizer:Object = new Object();
resizer.onResize = function() {
topHeader_mc.back_mc._width = Stage.width;
footer_mc.back_mc._width = Stage.width;
footer_mc._y = Stage.height-20;
content_mc._y = (Stage.height/2);
};
Stage.addListener(resizer);
resizer.onResize();