Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: Re: FLASH: Designing for Monitor Resolution
From: 2Nerotik
Date: Sun, 13 Feb 2000 08:25:18 GMT

At 07:24 PM 11/02/2000 +0100, Dominik Kowalczyk wrote:
>Hi,
>
>Bill wrote:
>
> > Im not sure I believe these statistics. Two questions: Does anyone
> > have a source for hard statistics about monitor resolution in use?
> > What resolution do people think one should design for?

With Flash I design for 1024x768 and allow resizing, ie width=100% /
height=100% this
way the movie still looks good at 800x600

> > Does anyone detect resolution in use and adjust pages for it? If so
> > is there a reliable method that works with all OSs, Borwsers and
> > browser versions?
> >
>
>You can do it in JavaScript.

Here's a detection script I wrote last week for different sized backgrounds
for an HTML page,
and easily configd to display movies for different rezolutions, if you
don't see how just ask me,
if's very simple.

< SCRIPT Language="JavaScript1.2">
<!--

function getWallpaper() {
if (screen.Width == 1024) {
i = 0 }
if (screen.Width == 800) {
i = 1 }
if (screen.Width == 640) {
i = 2 }

image = new Array(3);
image[0] = "1024.jpg";
image[1] = "800.jpg";
image[2] = "640.jpg";

document.write('<BODY BACKGROUND="' + image[i] + '" BGPROPERTIES="Fixed">');

}
//** end hiding of JavaScript -->
< /SCRIPT>
.oOo.
|| Ever stop to think and forget to start again ?
||
|| Addicted 2 Swing ---> http://www.nisa.net/~2nerotik/
|| Fontaholic ? ---> http://www.fontsanon.com
|| HTML Writers Guild ---> http://www.hwg.org

flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flashforward2000 and The Flash Film Festival
"The World’s Premier Flash Solutions Conference and Expo"
March 27-29, Nob Hill Masonic Center, San Francisco, California

-Register before Feb 25 and save $200!!-- www.flashforward2000.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  FLASH: Designing for Monitor Resolution, Bill
  Re: FLASH: Designing for Monitor Resolut, Dominik Kowalczyk

[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]