If you try to do a location.reload() and you have a layer containing Flash,
it will not dissapear and so you'll have the layer twice.

> -----Mensaje original-----
> De: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]En nombre de aca
> Enviado el: jueves, 17 de mayo de 2001 16:37
> Para: [EMAIL PROTECTED]
> Asunto: Re: [Dynapi-Dev] Netscape resize ... <pulling hair out>
>
>
> This is known BUG in IE
> http://support.microsoft.com/support/kb/articles/Q269/8/02.ASP?LN=
> EN-US&SD=g
> n&FR=0&qry=innerHTML%20div%20image%205.5&rnk=1&src=DHCS_MSPSS_gn_S
> RCH&SPR=IE
> P
>
> Does anyone know how to fix it with DynAPI when using setHTML function.
>
> Example:
>       when you use myLayer.setHTML('<img name="myimg" src="myimg.gif"
> border=0>');
>       image does not show and browser continue to be bussy.
>
> :p aca
>
> ----- Original Message -----
> From: "Chris Casad" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, May 17, 2001 8:09 PM
> Subject: RE: [Dynapi-Dev] Netscape resize ... <pulling hair out>
>
>
> > Well this is the fix that I am going with for now... does
> anyone have any
> > comments on this.  Is this bad?
> >
> > In dynapi.js: (line 224)
> >
> > DynAPIObject.prototype.resizeHandler = function() {
> > eval(this.onResizeCodes.join(";"));
> > if (is.ns4) location.reload();  ////////// New Line
> > if (this.onResize) this.onResize();
> > }
> >
> > Chris
> >
> >
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED]]On Behalf Of Chris Casad
> > Sent: Thursday, May 17, 2001 11:07 AM
> > To: [EMAIL PROTECTED]
> > Subject: RE: [Dynapi-Dev] Netscape resize ... <pulling hair out>
> >
> >
> > Does anyone have an answer to main question as well as Doug's note that
> the
> > NS resize fix was removed and will it be put back in?
> >
> > This seems like such a big thing. Was it removed by accident or on
> purpose?
> >
> > Chris
> >
> >
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED]]On Behalf Of Doug Melvin
> > Sent: Wednesday, May 16, 2001 8:45 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: [Dynapi-Dev] Netscape resize ... <pulling hair out>
> >
> >
> > It would seem that the NS resize fix was removed form the code-base
> > completely..
> >
> > Anyone planon putting it back?
> >
> > I would, but I wasn't even sure of the logic behind it all.
> > ----- Original Message -----
> > From: "Chris Casad" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Wednesday, May 16, 2001 8:30 AM
> > Subject: RE: [Dynapi-Dev] Netscape resize ... <pulling hair out>
> >
> >
> > > It is a single page ... no frame.
> > >
> > > Oh and I am using the newest DynAPI 2.53 (May 8, 2001).
> > >
> > > Chris
> > >
> > >
> > > -----Original Message-----
> > > From: [EMAIL PROTECTED]
> > > [mailto:[EMAIL PROTECTED]]On Behalf Of Jordi
> > > Ministral
> > > Sent: Wednesday, May 16, 2001 11:23 AM
> > > To: [EMAIL PROTECTED]
> > > Subject: Re: [Dynapi-Dev] Netscape resize ... <pulling hair out>
> > >
> > >
> > > Is you page in a frame ?
> > >
> > > Chris Casad wrote:
> > >
> > > > Ok ... does the onResize work with Netscape (I'm using 4.76)? I
> thought
> > I
> > > > had it working at one time but I can't even get this simple script
> below
> > > to
> > > > work correctly.  Am I forgetting something or am I wrong in the fact
> > that
> > > it
> > > > is suppose to work in Netscape?
> > > >
> > > > The layer shows up correctly onLoad but when I resize Netscape the
> layer
> > > > just disappears.
> > > >
> > > > And of course, it works in IE.
> > > >
> > > > --Chris
> > > >
> > > > /////////////////////////////////////////////////////////////
> > > >
> > > > <script language="Javascript">
> > > >
> > > > DynAPI.onLoad=function() {
> > > >         backLayer = new DynLayer();
> > > >         backLayer.moveTo(2,2);
> > > >         backLayer.setWidth(DynAPI.document.getWidth()-4);
> > > >         backLayer.setHeight(150);
> > > >         backLayer.setBgColor('#000000');
> > > >         backLayer.setVisible(true);
> > > >
> > > >         DynAPI.document.addChild(backLayer);
> > > > }
> > > >
> > > > DynAPI.onResize=function() {
> > > >         backLayer.setWidth(DynAPI.document.getWidth()-4);
> > > > }
> > > >
> > > > </script>
> > > >
> > > > /////////////////////////////////////////////////////////////
> > > >
> > > > _______________________________________________
> > > > Dynapi-Dev mailing list
> > > > [EMAIL PROTECTED]
> > > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev
> > >
> > >
> > > _______________________________________________
> > > Dynapi-Dev mailing list
> > > [EMAIL PROTECTED]
> > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev
> > >
> > >
> > > _______________________________________________
> > > Dynapi-Dev mailing list
> > > [EMAIL PROTECTED]
> > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev
> >
> >
> > _______________________________________________
> > Dynapi-Dev mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/dynapi-dev
> >
> >
> > _______________________________________________
> > Dynapi-Dev mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/dynapi-dev
> >
> >
> > _______________________________________________
> > Dynapi-Dev mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/dynapi-dev
> >
>
>
> _______________________________________________
> Dynapi-Dev mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/dynapi-dev
>


_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-dev

Reply via email to