From: b0n3z <b0...@go...> - 2000-12-13 05:22:04
|
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=3DsetTimeout(DynImage+'.loadercheck()',25); should be: DynImage.timerId=3DsetTimeout('DynImage.loadercheck()',25); Best regards, Josep ----- Original Message -----=20 From: b0n3z=20 To: dyn...@li...=20 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) |
From: Dan S. <dy...@fu...> - 2000-12-13 14:38:20
|
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) > |
From: Pascal B. <pa...@dy...> - 2000-12-13 18:02:39
|
the loader was implemented for precaching the images, this way you can show splash screens on your page/app while images are being loaded. Pascal Bestebroer pa...@dy... http://www.dynamic-core.net > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Dan Steinman > Verzonden: woensdag 13 december 2000 21:08 > Aan: dyn...@li... > Onderwerp: 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 > |