Re: Netscape 4.04

2001-01-15 Thread Jay Brushett

Hi,

If your page uses cascading style sheets then that is probably your 
problem. There is a well known bug in version 4.x of netscape that loses 
all style sheet information when the page is resized.

Use this javascript code to fix it:





Now that may not be your problem but it sounds like it to me.

At 08:37 AM 1/15/2001 -0600, you wrote:
>Hello,
>
>I am using Netscape ver 4.04. Our website uses a Cold Fusion (.cfm) opening
>page because of some dynamic data that changes on a day-to-day basis.
>
>When a user adjusts the screen by using the mouse to resize the borders, our
>home page then does not reload and appears blank. Refreshing or reloading
>the page makes it re-appear. This does not happen in IE.
>
>Is there a problem with using Cold Fusion? I've seen some sites that use it
>and do not experience this.
>
>Any suggestions/corrections/ideas will be appreciated. Thanks.
>
>Robert Orlini
>HW Wilson
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Netscape 4.04

2001-01-15 Thread James Maltby

It's mainly a Netscape problem - Dreamweaver solves the problem with this
script:




Hope it helps

James

-Original Message-
From: Robert Orlini [mailto:[EMAIL PROTECTED]]
Sent: 15 January 2001 14:38
To: CF-Talk
Subject: Netscape 4.04


Hello,

I am using Netscape ver 4.04. Our website uses a Cold Fusion (.cfm) opening
page because of some dynamic data that changes on a day-to-day basis.

When a user adjusts the screen by using the mouse to resize the borders, our
home page then does not reload and appears blank. Refreshing or reloading
the page makes it re-appear. This does not happen in IE.

Is there a problem with using Cold Fusion? I've seen some sites that use it
and do not experience this.

Any suggestions/corrections/ideas will be appreciated. Thanks.

Robert Orlini
HW Wilson
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Netscape 4.04

2001-01-15 Thread Robert Orlini

Thanks for the info. I inserted the script into the page before the in
between the , however, it continually reloads the page; any faster and
it would blink. Did I miss something?

Robert O.

>-Original Message-
>From: Jay Brushett [mailto:[EMAIL PROTECTED]]
>Sent: Monday, January 15, 2001 4:37 AM
>To: CF-Talk
>Subject: Re: Netscape 4.04
>
>
>Hi,
>
>If your page uses cascading style sheets then that is probably your
>problem. There is a well known bug in version 4.x of netscape that loses
>all style sheet information when the page is resized.
>
>Use this javascript code to fix it:
>
>
><!--
>if (document.layers) {
>
>window.onResize = reloadIt;
>
>}
>
>function reloadIt() {
>
>   document.location = document.location;
>
>}
>//-->
>
>
>Now that may not be your problem but it sounds like it to me.
>
>At 08:37 AM 1/15/2001 -0600, you wrote:
>>Hello,
>>
>>I am using Netscape ver 4.04. Our website uses a Cold Fusion
>(.cfm) opening
>>page because of some dynamic data that changes on a day-to-day basis.
>>
>>When a user adjusts the screen by using the mouse to resize the
>borders, our
>>home page then does not reload and appears blank. Refreshing or reloading
>>the page makes it re-appear. This does not happen in IE.
>>
>>Is there a problem with using Cold Fusion? I've seen some sites
>that use it
>>and do not experience this.
>>
>>Any suggestions/corrections/ideas will be appreciated. Thanks.
>>
>>Robert Orlini
>>HW Wilson
>>
>>
>>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Netscape 4.04

2001-01-15 Thread Robert Orlini

Thanks James.

I don't use Dreamweaver...would the code below with my home page saved as a
Cold Fusion file?

Robert O.

>-Original Message-
>From: James Maltby [mailto:[EMAIL PROTECTED]]
>Sent: Monday, January 15, 2001 8:17 AM
>To: CF-Talk
>Subject: RE: Netscape 4.04
>
>
>It's mainly a Netscape problem - Dreamweaver solves the problem with this
>script:
>
>
><!--
>function MM_reloadPage(init) {  //reloads the window if Nav4 resized
>if (init==true) with (navigator) {if
>((appName=="Netscape")&&(parseInt(appVersion)==4)) {
>document.MM_pgW=innerWidth; document.MM_pgH=innerHeight;
>onresize=MM_reloadPage; }}
>else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH)
>location.reload();
>}
>MM_reloadPage(true);
>//-->
>
>Hope it helps
>
>James
>
>-Original Message-
>From: Robert Orlini [mailto:[EMAIL PROTECTED]]
>Sent: 15 January 2001 14:38
>To: CF-Talk
>Subject: Netscape 4.04
>
>
>Hello,
>
>I am using Netscape ver 4.04. Our website uses a Cold Fusion (.cfm) opening
>page because of some dynamic data that changes on a day-to-day basis.
>
>When a user adjusts the screen by using the mouse to resize the
>borders, our
>home page then does not reload and appears blank. Refreshing or reloading
>the page makes it re-appear. This does not happen in IE.
>
>Is there a problem with using Cold Fusion? I've seen some sites that use it
>and do not experience this.
>
>Any suggestions/corrections/ideas will be appreciated. Thanks.
>
>Robert Orlini
>HW Wilson
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Netscape 4.04

2001-01-15 Thread Jay Brushett

Hi,

Not sure why it'd be giving you that problem. You may want to take a look 
at the other code that was posted. As long as it's between your  and 
 it should be fine. Maybe I'm missing something.

I have 4.7 and it's working fine BTW.

Jay

At 09:13 AM 1/15/2001 -0600, you wrote:
>Thanks for the info. I inserted the script into the page before the in
>between the , however, it continually reloads the page; any faster and
>it would blink. Did I miss something?
>
>Robert O.
>
> >-Original Message-
> >From: Jay Brushett [mailto:[EMAIL PROTECTED]]
> >Sent: Monday, January 15, 2001 4:37 AM
> >To: CF-Talk
> >Subject: Re: Netscape 4.04
> >
> >
> >Hi,
> >
> >If your page uses cascading style sheets then that is probably your
> >problem. There is a well known bug in version 4.x of netscape that loses
> >all style sheet information when the page is resized.
> >
> >Use this javascript code to fix it:
> >
> >
> ><!--
> >if (document.layers) {
> >
> >window.onResize = reloadIt;
> >
> >}
> >
> >function reloadIt() {
> >
> >   document.location = document.location;
> >
> >}
> >//-->
> >
> >
> >Now that may not be your problem but it sounds like it to me.
> >
> >At 08:37 AM 1/15/2001 -0600, you wrote:
> >>Hello,
> >>
> >>I am using Netscape ver 4.04. Our website uses a Cold Fusion
> >(.cfm) opening
> >>page because of some dynamic data that changes on a day-to-day basis.
> >>
> >>When a user adjusts the screen by using the mouse to resize the
> >borders, our
> >>home page then does not reload and appears blank. Refreshing or reloading
> >>the page makes it re-appear. This does not happen in IE.
> >>
> >>Is there a problem with using Cold Fusion? I've seen some sites
> >that use it
> >>and do not experience this.
> >>
> >>Any suggestions/corrections/ideas will be appreciated. Thanks.
> >>
> >>Robert Orlini
> >>HW Wilson
> >>
> >>
> >>
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Netscape 4.04

2001-01-15 Thread Russel Madere

Are you using tables on the page?

I found that Netscape 4.0 did not like to resize tables.  It was fixed when
I got Netscape 4.7.

Russel


  Russel Madere, Jr. Senior Web Developer
  ICQ: 5446158   http://www.TurboSquid.com

Some days you eat the bear; some days the bear eats you.



> -Original Message-
> From: Robert Orlini [mailto:[EMAIL PROTECTED]]
> Sent: Monday, January 15, 2001 08:38
> To: CF-Talk
> Subject: Netscape 4.04
>
>
> Hello,
>
> I am using Netscape ver 4.04. Our website uses a Cold Fusion
> (.cfm) opening
> page because of some dynamic data that changes on a day-to-day basis.
>
> When a user adjusts the screen by using the mouse to resize the
> borders, our
> home page then does not reload and appears blank. Refreshing or reloading
> the page makes it re-appear. This does not happen in IE.
>
> Is there a problem with using Cold Fusion? I've seen some sites
> that use it
> and do not experience this.
>
> Any suggestions/corrections/ideas will be appreciated. Thanks.
>
> Robert Orlini
> HW Wilson
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Netscape 4.04

2001-01-15 Thread Robert Orlini

Russel,

I had my manager try it on Netscape 6.0 which is really new and, yes, the
problem no longer exists. So it is a version problem in the least. I can
live with this. Thanks.

Robert O.

>-Original Message-
>From: Russel Madere [mailto:[EMAIL PROTECTED]]
>Sent: Monday, January 15, 2001 8:48 AM
>To: CF-Talk
>Subject: RE: Netscape 4.04
>
>
>Are you using tables on the page?
>
>I found that Netscape 4.0 did not like to resize tables.  It was fixed when
>I got Netscape 4.7.
>
>Russel
>
>
>  Russel Madere, Jr. Senior Web Developer
>  ICQ: 5446158   http://www.TurboSquid.com
>
>Some days you eat the bear; some days the bear eats you.
>
>
>
>> -Original Message-
>> From: Robert Orlini [mailto:[EMAIL PROTECTED]]
>> Sent: Monday, January 15, 2001 08:38
>> To: CF-Talk
>> Subject: Netscape 4.04
>>
>>
>> Hello,
>>
>> I am using Netscape ver 4.04. Our website uses a Cold Fusion
>> (.cfm) opening
>> page because of some dynamic data that changes on a day-to-day basis.
>>
>> When a user adjusts the screen by using the mouse to resize the
>> borders, our
>> home page then does not reload and appears blank. Refreshing or reloading
>> the page makes it re-appear. This does not happen in IE.
>>
>> Is there a problem with using Cold Fusion? I've seen some sites
>> that use it
>> and do not experience this.
>>
>> Any suggestions/corrections/ideas will be appreciated. Thanks.
>>
>> Robert Orlini
>> HW Wilson
>>
>>
>>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Netscape 4.04

2001-01-15 Thread Adrian J. Moreno

Robert,

the Javascript that James Maltby sent is just that - Javascript. It was just generated 
by DreamWeaver, but useable
(sp?) by any HTML file. A similar script that I have been using is this one. Just put 
it in your header.







HTH,

Adrian J. Moreno


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Netscape 4.04

2001-01-15 Thread Robert Orlini

Hello Adrian,

It works great - thank you!

Robert O.

>-Original Message-
>From: Adrian J. Moreno [mailto:[EMAIL PROTECTED]]
>Sent: Monday, January 15, 2001 12:48 PM
>To: CF-Talk
>Subject: Re: Netscape 4.04
>
>
>Robert,
>
>the Javascript that James Maltby sent is just that - Javascript. 
>It was just generated by DreamWeaver, but useable
>(sp?) by any HTML file. A similar script that I have been using is 
>this one. Just put it in your header.
>
>
>
><!-- Fixes onresize bug in NS4
>   NS4 = document.layers;
>   if (NS4) {
>  origWidth = innerWidth;
>  origHeight = innerHeight;
>   }
>
>function reDo() {
>   if (innerWidth != origWidth || innerHeight != origHeight)
>  location.reload();
>}
>
>if (NS4) onresize = reDo;
>//-->
>
>
>
>HTH,
>
>Adrian J. Moreno
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Netscape 4.04

2001-01-16 Thread Zachary Bedell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Sorry to extend a finished thread, but

Does anyone else see the irony of version "four-oh-four" of a browser
having unusual bugs?  Maybe they should have skipped to 4.05.  Kinda
like they skip the 13th floor in hotels

Again, apologies for the waste of time/bandwidth.  Just felt the need
to add my two cents...

Regards,
Zac Bedell

> -Original Message-
> From: Robert Orlini [mailto:[EMAIL PROTECTED]]
> Sent: Monday, January 15, 2001 2:56 PM
> To: CF-Talk
> Subject: RE: Netscape 4.04
> 
> 
> Hello Adrian,
> 
> It works great - thank you!
> 
> Robert O.
> 
> >-Original Message-
> >From: Adrian J. Moreno [mailto:[EMAIL PROTECTED]]
> >Sent: Monday, January 15, 2001 12:48 PM
> >To: CF-Talk
> >Subject: Re: Netscape 4.04
> >
> >
> >Robert,
> >
> >the Javascript that James Maltby sent is just that - Javascript. 
> >It was just generated by DreamWeaver, but useable

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.8 for non-commercial use <http://www.pgp.com>
Comment: Please use PGP!

iQA/AwUBOmSOGqvhLS1aWPxeEQLvxACglyhXQiJEep/uKSAogE5l1JJqcfgAn1EQ
ek1PDA3aiXFtlNJTE/bsjHfL
=cDF2
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists