From: Josep M. i T. <jm...@ne...> - 2000-12-13 18:20:59
|
Hi Dan! I posted yesterday that I had a problem changing the images from a widget after a resize in NS4. I've noticed that DynImage has the same problem. But the way dynimage is made, makes it very easy to solve this problem. I've simply changed: if (!this.created || bRedraw) { this.setHTML('<img name="'+this.id+'Image" src="'+imgObject.src+'" width='+this.w+' height='+this.h+' border=0>'); } to: if (!this.created || bRedraw || is.ns4) { this.setHTML('<img name="'+this.id+'Image" src="'+imgObject.src+'" width='+this.w+' height='+this.h+' border=0>'); } in setImage You can see the original dynimage here: http://llibertat.com/ateneu24/fires2000/prova.html and the modified one here: http://llibertat.com/ateneu24/fires2000/prova2.html I'd like it could be possible to solve this problem without redrawing. I've tried to redraw the tag changing the name value after each resize. And it seems to work, but NS 4.7 always crashes in a short time. The timer stuff? To periodically check if the images are loaded and invoke the handlers. Best regards, Josep -----Mensaje original----- De: Dan Steinman <dy...@fu...> Para: dyn...@li... <dyn...@li...> Fecha: miércoles 13 de diciembre de 2000 15:49 Asunto: Re: [Dynapi-Dev] Re: dynimage.js (gui) - update.. but still a problem >I have made some significant changes to DynImage and DynLayer (not in CVS yet), and currently I commented out the Load timers altogether, I never really understood what they were for. Everything works without it, you can use getImage() before DynLayer.onLoad() with no troubles. > >Can someone explain why all the load timer stuff is needed? > >Dan > >On Tue, Dec 12, 2000 at 09:24:18PM -0800, b0n3z wrote: >> Well I seem to have found part of the problem from a previous e-mail below.. but there is something still strange about this. If you refresh the page and do not move the mouse... In IE5 on Win2k Pro the spinning E never seems to stop until you move your mouse - is this correct? >> >> Solve for Error in line: 10 below - but doesn't solve the page not finishing the load (when mouse is not moved) >> >> ----------------------------------------------- >> Hi! >> >> I think I've found a bug in dynimage.js that shows up in NS4.7 but not in >> IE4 (NS6 hangs on my Win NT 4.0 :-( ). >> >> File: gui/dynapi.js >> File date: 20:27, 8 Dec 2000; taken from the beta .zip in SourceForge >> yesterday. >> Line: 100 >> was: DynImage.timerId=setTimeout(DynImage+'.loadercheck()',25); >> should be: DynImage.timerId=setTimeout('DynImage.loadercheck()',25); >> >> Best regards, >> >> Josep >> >> ----- Original Message ----- >> From: b0n3z >> To: dyn...@li... >> Sent: Tuesday, December 12, 2000 9:12 PM >> Subject: dynimage.js (gui) >> >> >> Using the latest snapshot build on http://dynapi.sourceforge.net/snapshot/ it seems that dynimage.js has a problem in it. Locally the example of dynapi.gui.dynimage.html seems to work fine.. but when on a site.. it has a problem. Hit the refresh button if the error doesn't show up the first time. Here is an example http://www.gotapex.com/b0n3z/beta/dynimage.html >> >> Line: 10 >> Char: 2 >> Error: Syntax error >> Code: 0 >> >> Thanks goes out to all the Gurus that Eat, Live, Sleep and Breath this stuff... >> >> Ken (aka b0n3z) >> >_______________________________________________ >Dynapi-Dev mailing list >Dyn...@li... >http://lists.sourceforge.net/mailman/listinfo/dynapi-dev |
From: Dan S. <dy...@fu...> - 2000-12-13 20:15:17
|
That change won't be needed, it works slightly differently now, and for all I can tell it works perfeclty in Netcape. Dan On Wed, Dec 13, 2000 at 07:26:34PM +0100, Josep Monés i Teixidor wrote: > Hi Dan! > > I posted yesterday that I had a problem changing the images from a widget > after a resize in NS4. I've noticed that DynImage has the same problem. But > the way dynimage is made, makes it very easy to solve this problem. I've > simply changed: > > if (!this.created || bRedraw) { > this.setHTML('<img name="'+this.id+'Image" src="'+imgObject.src+'" > width='+this.w+' height='+this.h+' border=0>'); > } > > to: > if (!this.created || bRedraw || is.ns4) { > this.setHTML('<img name="'+this.id+'Image" src="'+imgObject.src+'" > width='+this.w+' height='+this.h+' border=0>'); > } > > in setImage > > You can see the original dynimage here: > http://llibertat.com/ateneu24/fires2000/prova.html > > and the modified one here: > http://llibertat.com/ateneu24/fires2000/prova2.html > > > I'd like it could be possible to solve this problem without redrawing. I've > tried to redraw the tag changing the name value after each resize. And it > seems to work, but NS 4.7 always crashes in a short time. > > > The timer stuff? > To periodically check if the images are loaded and invoke the handlers. > > Best regards, > > Josep > > > > > -----Mensaje original----- > De: Dan Steinman <dy...@fu...> > Para: dyn...@li... <dyn...@li...> > Fecha: miércoles 13 de diciembre de 2000 15:49 > Asunto: Re: [Dynapi-Dev] Re: dynimage.js (gui) - update.. but still a > problem > > > >I have made some significant changes to DynImage and DynLayer (not in CVS > yet), and currently I commented out the Load timers altogether, I never > really understood what they were for. Everything works without it, you can > use getImage() before DynLayer.onLoad() with no troubles. > > > >Can someone explain why all the load timer stuff is needed? > > > >Dan > > > >On Tue, Dec 12, 2000 at 09:24:18PM -0800, b0n3z wrote: > >> Well I seem to have found part of the problem from a previous e-mail > below.. but there is something still strange about this. If you refresh the > page and do not move the mouse... In IE5 on Win2k Pro the spinning E never > seems to stop until you move your mouse - is this correct? > >> > >> Solve for Error in line: 10 below - but doesn't solve the page not > finishing the load (when mouse is not moved) > >> > >> ----------------------------------------------- > >> Hi! > >> > >> I think I've found a bug in dynimage.js that shows up in NS4.7 but not in > >> IE4 (NS6 hangs on my Win NT 4.0 :-( ). > >> > >> File: gui/dynapi.js > >> File date: 20:27, 8 Dec 2000; taken from the beta .zip in SourceForge > >> yesterday. > >> Line: 100 > >> was: DynImage.timerId=setTimeout(DynImage+'.loadercheck()',25); > >> should be: DynImage.timerId=setTimeout('DynImage.loadercheck()',25); > >> > >> Best regards, > >> > >> Josep > >> > >> ----- Original Message ----- > >> From: b0n3z > >> To: dyn...@li... > >> Sent: Tuesday, December 12, 2000 9:12 PM > >> Subject: dynimage.js (gui) > >> > >> > >> Using the latest snapshot build on > http://dynapi.sourceforge.net/snapshot/ it seems that dynimage.js has a > problem in it. Locally the example of dynapi.gui.dynimage.html seems to work > fine.. but when on a site.. it has a problem. Hit the refresh button if the > error doesn't show up the first time. Here is an example > http://www.gotapex.com/b0n3z/beta/dynimage.html > >> > >> Line: 10 > >> Char: 2 > >> Error: Syntax error > >> Code: 0 > >> > >> Thanks goes out to all the Gurus that Eat, Live, Sleep and Breath this > stuff... > >> > >> Ken (aka b0n3z) > >> > >_______________________________________________ > >Dynapi-Dev mailing list > >Dyn...@li... > >http://lists.sourceforge.net/mailman/listinfo/dynapi-dev > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev |
From: Jordi 'I. M. <jmi...@or...> - 2000-12-14 12:55:43
|
Well the subject says it all. I have updated CVS /src/ with a new version of loadPanel that works in IE4 (at least mine ). Rather than a bug it was one missing line. The code even had a comment saying "here we should do this" but I guess Dan forgot adding the line. I think I've done it right. The example works fine, but this has been my first read of the loadPanel's code so I may not have added the proper line. I'll try to fix Ns6 now, but amazingly NS6 refuses to run in my computer: it simply crashes while showing the splash screen. I wonder if the software recognises me as someone with a chance of making things crossbrowser and protects itself... anyone experiencing the same ? ---- Off topic: yesterday I was talking with Pascal about christmas and suddenly thought about the people in the southern hemisphere. It's summer down there. Don't they feel sort of stupid with all these snow, winter stufff ? I've never seen an Australian christmas image but I don't think they go throwing snowballs to each other..... shouldn't they place coconuts instead of snowflakes and have a surfer-Santa ? Can anyone throw some light on me ? I'm puzzled. |
From: Cameron H. <ca...@bi...> - 2000-12-14 13:14:46
|
> Off topic: yesterday I was talking with Pascal about christmas > and suddenly > thought about the people in the southern hemisphere. It's summer > down there. > Don't they feel sort of stupid with all these snow, winter stufff > ? I've never > seen an Australian christmas image but I don't think they go > throwing snowballs > to each other..... shouldn't they place coconuts instead of > snowflakes and have > a surfer-Santa ? > > Can anyone throw some light on me ? I'm puzzled. I'm from New Zealand, although I'm currently living in the UK. To satisfy your curiosity I think most people have BBQ's. Our family tends to have a Christmas roast lunch indoors and go outside afterwards. So it is kind of weird. I feel sorry for the people wandering around in Santa suits, they must be melting in those things! So Christmas seems wrong, on the other hand, it's definetly better having New Years Eve in the middle of summer. |
From: Kevin F. <kfr...@id...> - 2000-12-14 22:16:00
|
Off Topic: No OZ people (at least I) don't feel stupid at all. Only the other day, watching the 6.00pm news and the blizzards sweeping across Northern US / Canada, cars sliding off the road, people digging their cars out of a metre of snow wearing more clothes then I own; I mentioned to my brother 'How could people live in that' :), frightening. After the news finished I wandered off down to the beach. For the majority of OZ people if the temp. falls below 10C at any time, we are having a bad winter let alone snow but we do have a snow field in the mountains (hills) somewhere - only in winter of coarse ... but each to their own. This year our family/friends Christmas have a rock'n'roll theme - 50's Music / BBQ / booze, then afternoon 'fatnap' on a banana chair in the yard or down to the beach, in preparation for the evening feast. Send you some pics if you want:) And yes, we do have surfin' Santas (lol) and no, we don't throw coconuts, only crushed Cooler/Esky ice. I suppose this behaviour is all brought about by the isolation ... then again, there's nothing quiet like living at the arse-end of the world :), it has its advantages. Kevin F > Off topic: yesterday I was talking with Pascal about christmas > and suddenly > thought about the people in the southern hemisphere. It's summer > down there. > Don't they feel sort of stupid with all these snow, winter stufff > ? I've never > seen an Australian christmas image but I don't think they go > throwing snowballs > to each other..... shouldn't they place coconuts instead of > snowflakes and have > a surfer-Santa ? > > Can anyone throw some light on me ? I'm puzzled. I'm from New Zealand, although I'm currently living in the UK. To satisfy your curiosity I think most people have BBQ's. Our family tends to have a Christmas roast lunch indoors and go outside afterwards. So it is kind of weird. I feel sorry for the people wandering around in Santa suits, they must be melting in those things! So Christmas seems wrong, on the other hand, it's definetly better having New Years Eve in the middle of summer. _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-dev |
From: Brandon M. <bnd...@ho...> - 2000-12-14 22:38:06
|
In the imortal words of that great christmas song: "Let it snow, let it snow, let it snow!" > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...]On Behalf Of Kevin > Francis > Sent: Thursday, December 14, 2000 5:27 PM > To: dyn...@li... > Subject: [Dynapi-Dev] RE:Off topic for Cameron > > > Off Topic: > > No OZ people (at least I) don't feel stupid at all. Only the other day, > watching the 6.00pm news and the blizzards sweeping across Northern US / > Canada, cars sliding off the road, people digging their cars out > of a metre > of snow wearing more clothes then I own; I mentioned to my brother 'How > could people live in that' :), frightening. After the news finished I > wandered off down to the beach. > > For the majority of OZ people if the temp. falls below 10C at any time, we > are having a bad winter let alone snow but we do have a snow field in the > mountains (hills) somewhere - only in winter of coarse ... but > each to their > own. > > This year our family/friends Christmas have a rock'n'roll theme - > 50's Music > / BBQ / booze, then afternoon 'fatnap' on a banana chair in the > yard or down > to the beach, in preparation for the evening feast. Send you some pics if > you want:) > > And yes, we do have surfin' Santas (lol) and no, we don't throw coconuts, > only crushed Cooler/Esky ice. > > I suppose this behaviour is all brought about by the isolation ... then > again, there's nothing quiet like living at the arse-end of the > world :), it > has its advantages. > > Kevin F > > > Off topic: yesterday I was talking with Pascal about christmas > > and suddenly > > thought about the people in the southern hemisphere. It's summer > > down there. > > Don't they feel sort of stupid with all these snow, winter stufff > > ? I've never > > seen an Australian christmas image but I don't think they go > > throwing snowballs > > to each other..... shouldn't they place coconuts instead of > > snowflakes and have > > a surfer-Santa ? > > > > Can anyone throw some light on me ? I'm puzzled. > > I'm from New Zealand, although I'm currently living in the UK. > > To satisfy your curiosity I think most people have BBQ's. Our family tends > to have a Christmas roast lunch indoors and go outside > afterwards. So it is > kind of weird. > > I feel sorry for the people wandering around in Santa suits, they must be > melting in those things! > > So Christmas seems wrong, on the other hand, it's definetly better having > New Years Eve in the middle of summer. > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev |
From: Craig T. <cr...@re...> - 2000-12-14 23:09:00
|
> To satisfy your curiosity I think most people have BBQ's. Our family tends > to have a Christmas roast lunch indoors and go outside afterwards. So it is > kind of weird. Well I'm singing Carolls at the Hilton on Christmas day ;) Excuse not to have a family bbq ;) - C |
From: <jm...@ne...> - 2000-12-14 15:03:08
|
I installed NS6 correctly but when I tried to launch it, it crashed while showing the splash screen. My OS is Wint NT 4.0 SP5. Josep ----- Original Message ----- From: "Jordi 'IlMaestro' Ministral" <jmi...@or...> To: <dyn...@li...> Sent: Thursday, December 14, 2000 1:53 PM Subject: [Dynapi-Dev] Fixed loadPanel in Ie4 > Well the subject says it all. I have updated CVS /src/ with a new version of > loadPanel that works in IE4 (at least mine ). Rather than a bug it was one > missing line. The code even had a comment saying "here we should do this" but I > guess Dan forgot adding the line. > > I think I've done it right. The example works fine, but this has been my first > read of the loadPanel's code so I may not have added the proper line. > > I'll try to fix Ns6 now, but amazingly NS6 refuses to run in my computer: it > simply crashes while showing the splash screen. I wonder if the software > recognises me as someone with a chance of making things crossbrowser and > protects itself... anyone experiencing the same ? > > ---- > > Off topic: yesterday I was talking with Pascal about christmas and suddenly > thought about the people in the southern hemisphere. It's summer down there. > Don't they feel sort of stupid with all these snow, winter stufff ? I've never > seen an Australian christmas image but I don't think they go throwing snowballs > to each other..... shouldn't they place coconuts instead of snowflakes and have > a surfer-Santa ? > > Can anyone throw some light on me ? I'm puzzled. > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev > |
From: Cameron H. <ca...@bi...> - 2000-12-14 15:43:25
|
Perhaps it would be better to use Mozilla. It's probably more stable than Netscape 6. I've never had any trouble installing and running it on Windows95/98/NT/2000 and Linux. > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...]On Behalf Of Josep Monés > i Teixidor > Sent: 14 December 2000 15:01 > To: dyn...@li... > Subject: Re: [Dynapi-Dev] Fixed loadPanel in Ie4 > > > I installed NS6 correctly but when I tried to launch it, it crashed while > showing the splash screen. My OS is Wint NT 4.0 SP5. > > Josep > > ----- Original Message ----- > From: "Jordi 'IlMaestro' Ministral" <jmi...@or...> > To: <dyn...@li...> > Sent: Thursday, December 14, 2000 1:53 PM > Subject: [Dynapi-Dev] Fixed loadPanel in Ie4 > > > > Well the subject says it all. I have updated CVS /src/ with a > new version > of > > loadPanel that works in IE4 (at least mine ). Rather than a bug > it was one > > missing line. The code even had a comment saying "here we > should do this" > but I > > guess Dan forgot adding the line. > > > > I think I've done it right. The example works fine, but this has been my > first > > read of the loadPanel's code so I may not have added the proper line. > > > > I'll try to fix Ns6 now, but amazingly NS6 refuses to run in my > computer: > it > > simply crashes while showing the splash screen. I wonder if the software > > recognises me as someone with a chance of making things crossbrowser and > > protects itself... anyone experiencing the same ? > > > > ---- > > > > Off topic: yesterday I was talking with Pascal about christmas and > suddenly > > thought about the people in the southern hemisphere. It's summer down > there. > > Don't they feel sort of stupid with all these snow, winter stufff ? I've > never > > seen an Australian christmas image but I don't think they go throwing > snowballs > > to each other..... shouldn't they place coconuts instead of > snowflakes and > have > > a surfer-Santa ? > > > > Can anyone throw some light on me ? I'm puzzled. > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev > > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev |
From: <f.k...@t-...> - 2000-12-14 17:15:12
|
i've installed Netscape 6 on Win2000 without any problems. Mozilla might be better, but most people will use netscape... >Perhaps it would be better to use Mozilla. It's probably more stable than >Netscape 6. I've never had any trouble installing and running it on >Windows95/98/NT/2000 and Linux. > >> -----Original Message----- >> From: dyn...@li... >> [mailto:dyn...@li...]On Behalf Of Josep Monés >> i Teixidor >> Sent: 14 December 2000 15:01 >> To: dyn...@li... >> Subject: Re: [Dynapi-Dev] Fixed loadPanel in Ie4 >> >> >> I installed NS6 correctly but when I tried to launch it, it crashed while >> showing the splash screen. My OS is Wint NT 4.0 SP5. >> >> Josep >> >> ----- Original Message ----- >> From: "Jordi 'IlMaestro' Ministral" <jmi...@or...> >> To: <dyn...@li...> >> Sent: Thursday, December 14, 2000 1:53 PM >> Subject: [Dynapi-Dev] Fixed loadPanel in Ie4 >> >> >> > Well the subject says it all. I have updated CVS /src/ with a >> new version >> of >> > loadPanel that works in IE4 (at least mine ). Rather than a bug >> it was one >> > missing line. The code even had a comment saying "here we >> should do this" >> but I >> > guess Dan forgot adding the line. >> > >> > I think I've done it right. The example works fine, but this has been my >> first >> > read of the loadPanel's code so I may not have added the proper line. >> > >> > I'll try to fix Ns6 now, but amazingly NS6 refuses to run in my >> computer: >> it >> > simply crashes while showing the splash screen. I wonder if the software >> > recognises me as someone with a chance of making things crossbrowser and >> > protects itself... anyone experiencing the same ? >> > >> > ---- >> > >> > Off topic: yesterday I was talking with Pascal about christmas and >> suddenly >> > thought about the people in the southern hemisphere. It's summer down >> there. >> > Don't they feel sort of stupid with all these snow, winter stufff ? I've >> never >> > seen an Australian christmas image but I don't think they go throwing >> snowballs >> > to each other..... shouldn't they place coconuts instead of >> snowflakes and >> have >> > a surfer-Santa ? >> > >> > Can anyone throw some light on me ? I'm puzzled. >> > >> > _______________________________________________ >> > Dynapi-Dev mailing list >> > Dyn...@li... >> > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev >> > >> >> _______________________________________________ >> Dynapi-Dev mailing list >> Dyn...@li... >> http://lists.sourceforge.net/mailman/listinfo/dynapi-dev > >_______________________________________________ >Dynapi-Dev mailing list >Dyn...@li... >http://lists.sourceforge.net/mailman/listinfo/dynapi-dev |
From: Cameron H. <ca...@bi...> - 2000-12-14 18:07:59
|
> i've installed Netscape 6 on Win2000 without any problems. > Mozilla might be better, but most people will use netscape... Not if they can't even open it ;-) I figure that for developers Mozilla is more stable, and easier to develop for. For users, well Netscape will probably update it with more stable Mozilla code further down the track? I presume that's their plan, or have they forked the code forever... |
From: Doug M. <do...@cr...> - 2000-12-14 17:43:27
|
I had the same experience on: A) my workstation: win98 with a duron 600 B) the test box: win98 with a Pentium 266mmx C) My home pc, p120, win98 D) Friends PC: win2kpro, PIII 700 C).. and so on.. I know of only one person who has successfully installed and run NS6.. not too good a track record, eh? Doug Melvin ----- Original Message ----- From: "Josep Monés i Teixidor" <jm...@ne...> To: <dyn...@li...> Sent: Thursday, December 14, 2000 7:00 AM Subject: Re: [Dynapi-Dev] Fixed loadPanel in Ie4 > I installed NS6 correctly but when I tried to launch it, it crashed while > showing the splash screen. My OS is Wint NT 4.0 SP5. > > Josep > > ----- Original Message ----- > From: "Jordi 'IlMaestro' Ministral" <jmi...@or...> > To: <dyn...@li...> > Sent: Thursday, December 14, 2000 1:53 PM > Subject: [Dynapi-Dev] Fixed loadPanel in Ie4 > > > > Well the subject says it all. I have updated CVS /src/ with a new version > of > > loadPanel that works in IE4 (at least mine ). Rather than a bug it was one > > missing line. The code even had a comment saying "here we should do this" > but I > > guess Dan forgot adding the line. > > > > I think I've done it right. The example works fine, but this has been my > first > > read of the loadPanel's code so I may not have added the proper line. > > > > I'll try to fix Ns6 now, but amazingly NS6 refuses to run in my computer: > it > > simply crashes while showing the splash screen. I wonder if the software > > recognises me as someone with a chance of making things crossbrowser and > > protects itself... anyone experiencing the same ? > > > > ---- > > > > Off topic: yesterday I was talking with Pascal about christmas and > suddenly > > thought about the people in the southern hemisphere. It's summer down > there. > > Don't they feel sort of stupid with all these snow, winter stufff ? I've > never > > seen an Australian christmas image but I don't think they go throwing > snowballs > > to each other..... shouldn't they place coconuts instead of snowflakes and > have > > a surfer-Santa ? > > > > Can anyone throw some light on me ? I'm puzzled. > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev > > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-dev > |
From: Jared N. <ja...@aa...> - 2000-12-14 18:02:37
|
NS6 has installed fine on my NT4.0 machine. Finally Netscape released a decent browser:o) |