My question revolves around visitor experience when handling the various amount of screen sizes these days. Is it better to design several sites to meet the demand, full screen flash or use coding. This is what I did.
screenWide = System.capabilities.screenResolutionX;
screenTall = System.capabilities.screenResolutionY;
if(screenWide==800 && screenTall==600) {
getURL("
http://xxx/zzz.htm","_self");
if(screenWide==1024 && screenTall==768) {
getURL("
http://xxx/zzz.htm","_self");
}
and so on. I thought this way would best maintain the integrity of the design while providing the visitor with a quality experience. Do any of you have some thoughts or experiences with the best way to handle this?
Thank you