View Full Version : Whats the reccomended size of the stage for fullscreen?
daidai
09-27-2007, 12:27 PM
When making a fullscreen site what size stage is reccomended to best fit all screen sizes?
Thanks
dai2
rhamej
09-28-2007, 02:27 PM
Depends on the intended audience. Unfortunately I still have to develop for 800x600. But others are going to 1024x768.
daidai
10-02-2007, 11:47 PM
thats the problem I cant predict who will be viewing, I guess 800x600 will stop any problems occurring
thanks
ghostmonk
10-03-2007, 08:23 AM
(1024 X 768) and (1280 X 1024) are very common screen resoultions. (800 X 600 is much less common these days, but as said before, it would depend on your audience)
The more advanced your application, the higher the likely hood your audience will have larger screen resolutions.
Unless you are making a full screen pop-up, also keep in mind that browser tool-bars will cut that size down.
The best method (though a little labor intensive) is to detect the stage size, and respond.
(you could also lay your assets out depending on the stage size as well)
goes something like this
if(stage.stageWidth >= somenumber && stage.stageHeight >= somenumber){
assetLoader.load(new URLRequest("appropriateSizedAsset1"));
}else if(ect ect ect){
assetLoader.load(new URLRequest("appropriateSizedAsset2"));
}else{
assetLoader.load(new URLRequest("defaultSizedAsset3"));
}
vBulletin® v3.8.4, Copyright ©2000-2010, Jelsoft Enterprises Ltd.