You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(83) |
Nov
(319) |
Dec
(441) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(617) |
Feb
(784) |
Mar
(426) |
Apr
(363) |
May
(489) |
Jun
(396) |
Jul
(405) |
Aug
(146) |
Sep
(97) |
Oct
(146) |
Nov
(348) |
Dec
(99) |
2002 |
Jan
(69) |
Feb
(92) |
Mar
(58) |
Apr
(33) |
May
(29) |
Jun
(45) |
Jul
(72) |
Aug
(71) |
Sep
(47) |
Oct
(19) |
Nov
(48) |
Dec
(55) |
2003 |
Jan
(23) |
Feb
(73) |
Mar
(42) |
Apr
(52) |
May
(64) |
Jun
(155) |
Jul
(169) |
Aug
(103) |
Sep
(113) |
Oct
(118) |
Nov
(46) |
Dec
(30) |
2004 |
Jan
(19) |
Feb
(24) |
Mar
(40) |
Apr
(13) |
May
(35) |
Jun
(1) |
Jul
(23) |
Aug
(3) |
Sep
(31) |
Oct
(31) |
Nov
(26) |
Dec
|
2005 |
Jan
(5) |
Feb
(4) |
Mar
(3) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
(23) |
Sep
(9) |
Oct
(5) |
Nov
(2) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Raymond I. <xw...@ya...> - 2002-12-09 19:51:13
|
--- Webmaster <web...@fa...> wrote: > Ray, i tested your advice, doesn't work, it > overflows everything as > before, do you recommend me to switch to 2.9? Stick with 2.5.6 for now. The widgets will have to be convert to support the 2.9 format. I think I see what's going on here. You are trying to prevent the height (and/or width) of the LoadPanel for changing when the content changes, correct? If yes then set setAutoResizeWidth(false), setAutoResizeHeight(false) and remove getContentWidth() and getContentHeight() > ***Actual script using 2.5.6 (also added the resize > script of netscape 4 > so you know if that interferes or something).*** I think DynAPI 2.5.6 should handle the NS4 resize issue. let me know if the above works. -- Raymond Irving > <script language="Javascript" > src="src/dynapi.js"></script> > <script language="Javascript"> > DynAPI.setLibraryPath('src/lib/'); > DynAPI.include('dynapi.api.*'); > DynAPI.include('dynapi.event.*') > DynAPI.include('dynapi.gui.loadpanel.js'); > </script> > <script language="Javascript"> > DynAPI.onLoad=function() { > lp = new LoadPanel(); > lp.setHTML("nada por aqui..."); > > lp.setSize(480,280); > lp.moveTo(175,260); > lp.setZIndex(4); > lp.setClip(10,10,10,10); > lp.setAutoResizeWidth(true); > lp.setAutoResizeHeight(true); > lp.getContentWidth(); > lp.getContentHeight(); > > counter = 0; > var el = new EventListener(); > el.onload = function(e) { > status = 'got load event '+ counter++; > } > > lp.addEventListener(el); > > DynAPI.document.addChild(lp); > } > //--> > </script> > > <script language="JavaScript" > type="text/JavaScript"> > <!-- > 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); > //--> > </script> > > ------------------------------------------------------------------------ > ------- > Juan Carlos Celaya, Webmaster de Factoria Digital. > E-mail: web...@fa... > www.FactoriaDigital.com / > Hosting.Factoriadigital.com > Tfnos. : (+34) 977 24 88 89 / 667 821 551 > Fax: (+34) 977 22 98 27 > ------------------------------------------------------------------------ > ------- > > > -----Mensaje original----- > De: dyn...@li... > [mailto:dyn...@li...] En > nombre de Raymond > Irving > Enviado el: lunes, 09 de diciembre de 2002 14:51 > Para: dyn...@li... > CC: dyn...@li... > Asunto: RE: [Dynapi-Help] New to DynAPI... should i > start wih 2.5.6 or > 2.9? (errors or missing something) > > > > Try using setAutoResizeWidth(true) > and setAutoResizeHeight(true) and then use > getWidth() > and getHeight() to get the with and height of the > content of the loadpanel. > > PS. Most of my work has been done using the 2.9 > version. I'm not very familliar with the workings of > 2.5.6. Maybe a developer from the 2.5.x days would > like to answer these questions. > > -- > Raymond Irving > > --- Webmaster <web...@fa...> wrote: > > **** Using DynAPI 2.5.6 **** > > > > I use getContentHeight() and getContentWidth()... > > Nothing happens, i'm > > using getURL to determine the content in layer, > > should i use > > setContent() for these two properties > > (getContentHeight, > > getContentWidth) to work? > > > > Btw, one of the examples > > (dynapi.gui.scrollpane.html) doesn't work at > > all in IE 6 SP1 on Win XP (javascript error, > > 'scrollobj' is an undefined > > object) and the other example, > > dynapi.gui.pushpanel.html, crashes (or > > kind of, layers get grey and don't change) if you > > push a few times the > > labels (i.e. label 1, then 3, then 2... Greyed) > > > > And about clipping property... Well, i don't see > it > > with the code i'm > > using: > > > > <script language="Javascript" > > src="src/dynapi.js"></script> > > <script language="Javascript"> > DynAPI.setLibraryPath('src/lib/'); > > DynAPI.include('dynapi.api.*'); > > DynAPI.include('dynapi.event.*') > > DynAPI.include('dynapi.gui.loadpanel.js'); > > </script> > > <script language="Javascript"> > > DynAPI.onLoad=function() { > > lp = new LoadPanel(); > > lp.setHTML("nada por aqui..."); > > > > lp.setSize(480,280); > > lp.moveTo(175,260); > > lp.setZIndex(4); > > lp.setClip(10,10,10,10); > > lp.getContentWidth(); > > lp.getContentHeight(); > > > > counter = 0; > > var el = new EventListener(); > > el.onload = function(e) { > > status = 'got load event '+ counter++; > > } > > > > lp.addEventListener(el); > > > > DynAPI.document.addChild(lp); > > } > > //--> > > </script> > > > > PS: Now there is only one LP because when using > two > > it gave error(as > > replied in previous mail), even with your code. > > > > > ------------------------------------------------------------------------ > > ------- > > Juan Carlos Celaya, Webmaster de Factoria Digital. > > E-mail: web...@fa... > > www.FactoriaDigital.com / > > Hosting.Factoriadigital.com > > Tfnos. : (+34) 977 24 88 89 / 667 821 551 > > Fax: (+34) 977 22 98 27 > > > ------------------------------------------------------------------------ > > ------- > > > > > > -----Mensaje original----- > > De: dyn...@li... > > [mailto:dyn...@li...] > En > > nombre de Raymond > > Irving > > Enviado el: miércoles, 04 de diciembre de 2002 > 15:18 > > Para: dyn...@li... > > Asunto: RE: [Dynapi-Help] New to DynAPI... should > i > > start wih 2.5.6 or > > 2.9? > === message truncated === __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Webmaster <web...@fa...> - 2002-12-09 18:40:21
|
Modified, same result, clipping doesn't work at all for me. Regards PS: DynApi 2.5.6, IE 6 SP1, Win XP. Also tested with Mozilla 1.2.1, with same results. ------------------------------------------------------------------------ ------- Juan Carlos Celaya, Webmaster de Factoria Digital. E-mail: web...@fa... www.FactoriaDigital.com / Hosting.Factoriadigital.com Tfnos. : (+34) 977 24 88 89 / 667 821 551 Fax: (+34) 977 22 98 27 ------------------------------------------------------------------------ ------- -----Mensaje original----- De: Joachim Lundgren [mailto:lu...@ho...] Enviado el: lunes, 09 de diciembre de 2002 18:22 Para: Webmaster; Asunto: RE: [Dynapi-Help] New to DynAPI... should i start wih 2.5.6 or 2.9? (errors or missing something - reply) dynlayer.setClip() takes one argument, an array with the four values - not four values passed to setClip(). So your code lp.setClip(10,10,10,10); should be lp.setClip([10,10,10,10]); Notice the square brackets (easy to miss), they are the shorthand notion for creating the array. Haven't looked at the other code, I'm mostly in a lurk-only state now. But let me know if it still won't work. /Lunna |
From: Joachim L. <lu...@ho...> - 2002-12-09 17:22:41
|
dynlayer.setClip() takes one argument, an array with the four values - not four values passed to setClip(). So your code lp.setClip(10,10,10,10); should be lp.setClip([10,10,10,10]); Notice the square brackets (easy to miss), they are the shorthand notion for creating the array. Haven't looked at the other code, I'm mostly in a lurk-only state now. But let me know if it still won't work. /Lunna |
From: Webmaster <web...@fa...> - 2002-12-09 17:03:01
|
Ray, i tested your advice, doesn't work, it overflows everything as before, do you recommend me to switch to 2.9?=20 I only plan to have a central layer with content who changes using a flash menu (that part already works) and that at the same time should change the header (the lp2 on the script, removed now as i can't get it to work) and a scroller (that doesn't work at all right now). ***Actual script using 2.5.6 (also added the resize script of netscape 4 so you know if that interferes or something).*** <script language=3D"Javascript" src=3D"src/dynapi.js"></script> <script language=3D"Javascript"> DynAPI.setLibraryPath('src/lib/'); DynAPI.include('dynapi.api.*'); DynAPI.include('dynapi.event.*') DynAPI.include('dynapi.gui.loadpanel.js'); </script> <script language=3D"Javascript"> DynAPI.onLoad=3Dfunction() { lp =3D new LoadPanel(); lp.setHTML("nada por aqui..."); =09 lp.setSize(480,280); lp.moveTo(175,260);=09 lp.setZIndex(4); lp.setClip(10,10,10,10); lp.setAutoResizeWidth(true); lp.setAutoResizeHeight(true); lp.getContentWidth(); lp.getContentHeight(); =09 counter =3D 0; var el =3D new EventListener(); el.onload =3D function(e) { status =3D 'got load event '+ counter++; } =09 lp.addEventListener(el); =09 DynAPI.document.addChild(lp); } //--> </script> <script language=3D"JavaScript" type=3D"text/JavaScript"> <!-- function MM_reloadPage(init) { //reloads the window if Nav4 resized if (init=3D=3Dtrue) with (navigator) {if ((appName=3D=3D"Netscape")&&(parseInt(appVersion)=3D=3D4)) { document.MM_pgW=3DinnerWidth; document.MM_pgH=3DinnerHeight; onresize=3DMM_reloadPage; }} else if (innerWidth!=3Ddocument.MM_pgW || = innerHeight!=3Ddocument.MM_pgH) location.reload(); } MM_reloadPage(true); //--> </script> ------------------------------------------------------------------------ ------- Juan Carlos Celaya, Webmaster de Factoria Digital. E-mail: web...@fa... www.FactoriaDigital.com / Hosting.Factoriadigital.com=20 Tfnos. : (+34) 977 24 88 89 / 667 821 551 Fax: (+34) 977 22 98 27 ------------------------------------------------------------------------ ------- -----Mensaje original----- De: dyn...@li... [mailto:dyn...@li...] En nombre de Raymond Irving Enviado el: lunes, 09 de diciembre de 2002 14:51 Para: dyn...@li... CC: dyn...@li... Asunto: RE: [Dynapi-Help] New to DynAPI... should i start wih 2.5.6 or 2.9? (errors or missing something) Try using setAutoResizeWidth(true) and setAutoResizeHeight(true) and then use getWidth() and getHeight() to get the with and height of the content of the loadpanel. PS. Most of my work has been done using the 2.9 version. I'm not very familliar with the workings of 2.5.6. Maybe a developer from the 2.5.x days would like to answer these questions. -- Raymond Irving --- Webmaster <web...@fa...> wrote: > **** Using DynAPI 2.5.6 **** >=20 > I use getContentHeight() and getContentWidth()... > Nothing happens, i'm > using getURL to determine the content in layer, > should i use > setContent() for these two properties > (getContentHeight, > getContentWidth) to work? >=20 > Btw, one of the examples > (dynapi.gui.scrollpane.html) doesn't work at > all in IE 6 SP1 on Win XP (javascript error, > 'scrollobj' is an undefined > object) and the other example, > dynapi.gui.pushpanel.html, crashes (or > kind of, layers get grey and don't change) if you > push a few times the > labels (i.e. label 1, then 3, then 2... Greyed) >=20 > And about clipping property... Well, i don't see it > with the code i'm > using: >=20 > <script language=3D"Javascript" > src=3D"src/dynapi.js"></script> > <script language=3D"Javascript"> DynAPI.setLibraryPath('src/lib/'); > DynAPI.include('dynapi.api.*'); > DynAPI.include('dynapi.event.*') > DynAPI.include('dynapi.gui.loadpanel.js'); > </script> > <script language=3D"Javascript"> > DynAPI.onLoad=3Dfunction() { > lp =3D new LoadPanel(); > lp.setHTML("nada por aqui..."); > =09 > lp.setSize(480,280); > lp.moveTo(175,260);=09 > lp.setZIndex(4); > lp.setClip(10,10,10,10); > lp.getContentWidth(); > lp.getContentHeight(); > =09 > counter =3D 0; > var el =3D new EventListener(); > el.onload =3D function(e) { > status =3D 'got load event '+ counter++; > } > =09 > lp.addEventListener(el); > =09 > DynAPI.document.addChild(lp); > } > //--> > </script> >=20 > PS: Now there is only one LP because when using two > it gave error(as > replied in previous mail), even with your code. >=20 > ------------------------------------------------------------------------ > ------- > Juan Carlos Celaya, Webmaster de Factoria Digital. > E-mail: web...@fa... > www.FactoriaDigital.com / > Hosting.Factoriadigital.com > Tfnos. : (+34) 977 24 88 89 / 667 821 551 > Fax: (+34) 977 22 98 27 > ------------------------------------------------------------------------ > ------- >=20 >=20 > -----Mensaje original----- > De: dyn...@li... > [mailto:dyn...@li...] En > nombre de Raymond > Irving > Enviado el: mi=E9rcoles, 04 de diciembre de 2002 15:18 > Para: dyn...@li... > Asunto: RE: [Dynapi-Help] New to DynAPI... should i > start wih 2.5.6 or > 2.9? >=20 >=20 >=20 > --- Webmaster <web...@fa...> wrote: > > Hi, just tested 2.5.6 load layer function, seems > > nice, but how do i > > determine if the layer is scrollable if the > content "overflows" the > > layer size? >=20 > Try getContentHeight() and getContentWidth() > =20 > > And also what does exactly the clipping function > in > > dynapi? Same as in > > normal DHTML (determine viewable size of an > object) > > or there is another > > application i haven't thought of? >=20 > It's the same as the one used in DHTML >=20 > =20 > PS. Please remember to use "Reply to All" when > replying making a reply >=20 >=20 > -- > Raymond Irving >=20 > __________________________________________________ > Do you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up > now. > http://mailplus.yahoo.com >=20 >=20 > ------------------------------------------------------- > This SF.net email is sponsored by: Microsoft Visual Studio.NET > comprehensive development tool, built to increase > your=20 > productivity. Try a free online hosted session at: > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf=20 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Raymond I. <xw...@ya...> - 2002-12-09 13:50:35
|
Try using setAutoResizeWidth(true) and setAutoResizeHeight(true) and then use getWidth() and getHeight() to get the with and height of the content of the loadpanel. PS. Most of my work has been done using the 2.9 version. I'm not very familliar with the workings of 2.5.6. Maybe a developer from the 2.5.x days would like to answer these questions. -- Raymond Irving --- Webmaster <web...@fa...> wrote: > **** Using DynAPI 2.5.6 **** > > I use getContentHeight() and getContentWidth()... > Nothing happens, i'm > using getURL to determine the content in layer, > should i use > setContent() for these two properties > (getContentHeight, > getContentWidth) to work? > > Btw, one of the examples > (dynapi.gui.scrollpane.html) doesn't work at > all in IE 6 SP1 on Win XP (javascript error, > 'scrollobj' is an undefined > object) and the other example, > dynapi.gui.pushpanel.html, crashes (or > kind of, layers get grey and don't change) if you > push a few times the > labels (i.e. label 1, then 3, then 2... Greyed) > > And about clipping property... Well, i don't see it > with the code i'm > using: > > <script language="Javascript" > src="src/dynapi.js"></script> > <script language="Javascript"> > DynAPI.setLibraryPath('src/lib/'); > DynAPI.include('dynapi.api.*'); > DynAPI.include('dynapi.event.*') > DynAPI.include('dynapi.gui.loadpanel.js'); > </script> > <script language="Javascript"> > DynAPI.onLoad=function() { > lp = new LoadPanel(); > lp.setHTML("nada por aqui..."); > > lp.setSize(480,280); > lp.moveTo(175,260); > lp.setZIndex(4); > lp.setClip(10,10,10,10); > lp.getContentWidth(); > lp.getContentHeight(); > > counter = 0; > var el = new EventListener(); > el.onload = function(e) { > status = 'got load event '+ counter++; > } > > lp.addEventListener(el); > > DynAPI.document.addChild(lp); > } > //--> > </script> > > PS: Now there is only one LP because when using two > it gave error(as > replied in previous mail), even with your code. > > ------------------------------------------------------------------------ > ------- > Juan Carlos Celaya, Webmaster de Factoria Digital. > E-mail: web...@fa... > www.FactoriaDigital.com / > Hosting.Factoriadigital.com > Tfnos. : (+34) 977 24 88 89 / 667 821 551 > Fax: (+34) 977 22 98 27 > ------------------------------------------------------------------------ > ------- > > > -----Mensaje original----- > De: dyn...@li... > [mailto:dyn...@li...] En > nombre de Raymond > Irving > Enviado el: miércoles, 04 de diciembre de 2002 15:18 > Para: dyn...@li... > Asunto: RE: [Dynapi-Help] New to DynAPI... should i > start wih 2.5.6 or > 2.9? > > > > --- Webmaster <web...@fa...> wrote: > > Hi, just tested 2.5.6 load layer function, seems > > nice, but how do i > > determine if the layer is scrollable if the > content "overflows" the > > layer size? > > Try getContentHeight() and getContentWidth() > > > And also what does exactly the clipping function > in > > dynapi? Same as in > > normal DHTML (determine viewable size of an > object) > > or there is another > > application i haven't thought of? > > It's the same as the one used in DHTML > > > PS. Please remember to use "Reply to All" when > replying making a reply > > > -- > Raymond Irving > > __________________________________________________ > Do you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up > now. > http://mailplus.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Microsoft Visual > Studio.NET > comprehensive development tool, built to increase > your > productivity. Try a free online hosted session at: > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Webmaster <web...@fa...> - 2002-12-09 11:18:19
|
Ok, i see it has months, but site claims 2.5.6 is the latest stable release... Regards ------------------------------------------------------------------------ ------- Juan Carlos Celaya, Webmaster de Factoria Digital. E-mail: web...@fa... www.FactoriaDigital.com <http://www.factoriadigital.com/> / Hosting.Factoriadigital.com <http://hosting.factoriadigital.com/> Tfnos. : (+34) 977 24 88 89 / 667 821 551 Fax: (+34) 977 22 98 27 ------------------------------------------------------------------------ ------- |
From: Webmaster <web...@fa...> - 2002-12-09 11:08:43
|
**** Using DynAPI 2.5.6 **** I use getContentHeight() and getContentWidth()... Nothing happens, i'm using getURL to determine the content in layer, should i use setContent() for these two properties (getContentHeight, getContentWidth) to work? Btw, one of the examples (dynapi.gui.scrollpane.html) doesn't work at all in IE 6 SP1 on Win XP (javascript error, 'scrollobj' is an undefined object) and the other example, dynapi.gui.pushpanel.html, crashes (or kind of, layers get grey and don't change) if you push a few times the labels (i.e. label 1, then 3, then 2... Greyed) And about clipping property... Well, i don't see it with the code i'm using: <script language=3D"Javascript" src=3D"src/dynapi.js"></script> <script language=3D"Javascript"> DynAPI.setLibraryPath('src/lib/'); DynAPI.include('dynapi.api.*'); DynAPI.include('dynapi.event.*') DynAPI.include('dynapi.gui.loadpanel.js'); </script> <script language=3D"Javascript"> DynAPI.onLoad=3Dfunction() { lp =3D new LoadPanel(); lp.setHTML("nada por aqui..."); =09 lp.setSize(480,280); lp.moveTo(175,260);=09 lp.setZIndex(4); lp.setClip(10,10,10,10); lp.getContentWidth(); lp.getContentHeight(); =09 counter =3D 0; var el =3D new EventListener(); el.onload =3D function(e) { status =3D 'got load event '+ counter++; } =09 lp.addEventListener(el); =09 DynAPI.document.addChild(lp); } //--> </script> PS: Now there is only one LP because when using two it gave error(as replied in previous mail), even with your code. ------------------------------------------------------------------------ ------- Juan Carlos Celaya, Webmaster de Factoria Digital. E-mail: web...@fa... www.FactoriaDigital.com / Hosting.Factoriadigital.com=20 Tfnos. : (+34) 977 24 88 89 / 667 821 551 Fax: (+34) 977 22 98 27 ------------------------------------------------------------------------ ------- -----Mensaje original----- De: dyn...@li... [mailto:dyn...@li...] En nombre de Raymond Irving Enviado el: mi=E9rcoles, 04 de diciembre de 2002 15:18 Para: dyn...@li... Asunto: RE: [Dynapi-Help] New to DynAPI... should i start wih 2.5.6 or 2.9? --- Webmaster <web...@fa...> wrote: > Hi, just tested 2.5.6 load layer function, seems > nice, but how do i > determine if the layer is scrollable if the content "overflows" the > layer size?=20 Try getContentHeight() and getContentWidth() =20 > And also what does exactly the clipping function in > dynapi? Same as in > normal DHTML (determine viewable size of an object) > or there is another > application i haven't thought of? It's the same as the one used in DHTML =20 PS. Please remember to use "Reply to All" when replying making a reply -- Raymond Irving __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Microsoft Visual Studio.NET=20 comprehensive development tool, built to increase your=20 productivity. Try a free online hosted session at: http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en _______________________________________________ Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Webmaster <web...@fa...> - 2002-12-06 22:44:26
|
Dynapi 2.5.6 About what files... Some are included (using your example script) so no idea, but it wasn't a standard IE error, it was a warning generated by dynapi from what i see Full script: <script language="Javascript" src="src/dynapi.js"></script> <script language="Javascript"> DynAPI.setLibraryPath('src/lib/'); DynAPI.include('dynapi.api.*'); DynAPI.include('dynapi.event.*') DynAPI.include('dynapi.gui.loadpanel.js'); </script> <script language="Javascript"> DynAPI.onLoad=function() { lp = new LoadPanel(); lp.setHTML("nada por aqui..."); lp.setSize(480,280); lp.moveTo(175,260); lp.setZIndex(4); counter = 0; var el = new EventListener(); el.onload = function(e) { status = 'got load event '+ counter++; } lp.addEventListener(el); DynAPI.document.addChild(lp); lp2 = new LoadPanel(); lp2.setURL('images/empresa_r2_c1.jpg'); lp2.setSize(758,185); lp2.moveTo(15,0); // <-- NOTE: lp will overlap lp2 lp2.setZIndex(2); DynAPI.document.addChild(lp2); } //--> </script> ------------------------------------------------------------------------ ------- Juan Carlos Celaya, Webmaster de Factoria Digital. E-mail: web...@fa... www.FactoriaDigital.com / Hosting.Factoriadigital.com Tfnos. : (+34) 977 24 88 89 / 667 821 551 Fax: (+34) 977 22 98 27 ------------------------------------------------------------------------ ------- -----Mensaje original----- De: Raymond Irving [mailto:xw...@ya...] Enviado el: viernes, 06 de diciembre de 2002 23:39 Para: Webmaster Asunto: RE: [Dynapi-Help] Debugging help needed What does line 182 says in dynapi.js? Or is it 182 in loadpanel.js? Are you using 2.5 or 2.9? Some more details are required PS. I noticed that this was not posted to the dynapi-help group were others might have seen the problem before. -- Raymond Irving --- Webmaster <web...@fa...> wrote: > DynApi reported an error . Line 182. Error : An > exception happened > > (well, that's what the translated ie6 msg says) > > Using your code, any idea of what can be? > > PS: I suppose that line 182 is in the dynapi .js > files... The page > doesn't have 182 lines of code, it has 137. > > Regards > ------------------------------------------------------------------------ > ------- > Juan Carlos Celaya, Webmaster de Factoria Digital. > E-mail: web...@fa... > www.FactoriaDigital.com / > Hosting.Factoriadigital.com > Tfnos. : (+34) 977 24 88 89 / 667 821 551 > Fax: (+34) 977 22 98 27 > ------------------------------------------------------------------------ > ------- > > > -----Mensaje original----- > De: dyn...@li... > [mailto:dyn...@li...] En > nombre de Raymond > Irving > Enviado el: jueves, 05 de diciembre de 2002 14:20 > Para: dyn...@li... > Asunto: Re: [Dynapi-Help] Debugging help needed > > > Hi, > > In dynapi 2.5 you can only call one function with DynAPI.onLoad. > DynAPI 2.9 supports the loading of more than one functions > at load time. > > Here's what the code should look like: > > DynAPI.onLoad=function() { > lp = new LoadPanel(); > lp.setHTML("nada por aqui..."); > > lp.setSize(480,280); // height will be overwritten > by > default > lp.moveTo(175,260); // <-- NOTE: lp will overlap > lp2 > lp.setZIndex(4); > > counter = 0; > var el = new EventListener(); > el.onload = function(e) { > status = 'got load event '+ counter++; > } > > lp.addEventListener(el); > > DynAPI.document.addChild(lp); > > lp2 = new LoadPanel(); > lp2.setURL('images/empresa_r2_c1.jpg'); > > lp2.setSize(758,185); > lp2.moveTo(15,0); // <-- NOTE: lp will overlap lp2 > lp2.setZIndex(2); > > DynAPI.document.addChild(lp2); > } > > NOTE: lp will overlap lp2 > > As for the setURL() and image path everything looks > ok > to me. Make sure that the page to the image is > correct. > > -- > Raymond Irving > > --- Webmaster <web...@fa...> wrote: > > Hi, i have this code and it gives me error on > > Internet Explorer 6 as if > > the objects weren't defined, i'm pretty lame on JS > > so maybe it's a > > syntax error or something, but i just don't see > it, > > here's the code: > > > > > -------------------------------------------------------------- > > <head> > > <script language="Javascript" > > src="src/dynapi.js"></script> > > <script language="Javascript"> > DynAPI.setLibraryPath('src/lib/'); > > DynAPI.include('dynapi.api.*'); > > DynAPI.include('dynapi.event.*') > > DynAPI.include('dynapi.gui.loadpanel.js'); > > </script> > > <script language="Javascript"> > > DynAPI.onLoad=function() { > > lp = new LoadPanel(); > > lp.setHTML("nada por aqui..."); > > > > lp.setSize(480,280); // height will be > overwritten > > by default > > lp.moveTo(175,260); > > lp.setZIndex(4); > > > > counter = 0; > > var el = new EventListener(); > > el.onload = function(e) { > > status = 'got load event '+ counter++; > > } > > > > lp.addEventListener(el); > > > > DynAPI.document.addChild(lp); > > } > > DynAPI.onLoad=function() { > > lp2 = new LoadPanel(); > > lp2.setURL('images/empresa_r2_c1.jpg'); > > > > lp2.setSize(758,185); > > lp2.moveTo(15,0); > > lp2.setZIndex(2); > > > > DynAPI.document.addChild(lp2); > > } > > //--> > > </script> > > </head> > > > -------------------------------------------------------------- > > Thanks for help. > > > > Regards! > > > > PS: Also for loading an image setURL is ok or > better > > to use a dedicated > > functions? Ah, and about paths, they are ok, this > > script worked until i > > added lp2 to it... > > > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up > now. > http://mailplus.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: <blu...@ya...> - 2002-12-06 21:01:16
|
NTU2NmJNT0MwLTY4MHhZRUM3OTczTXpTZzUtODUyTW1KTzIyNThtSGhzMi04 NDdESXZaNTUzN1ppR3Y0LTQ4MGw2MA0KPGh0bWw+DQo8aGVhZD4NCjx0aXRs ZT5BZHVsdCBDbGFzc2lmaWVkIDJrMjwvdGl0bGU+DQo8bWV0YSBodHRwLWVx dWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNl dD1pc28tODg1OS0xIj4NCjwvaGVhZD4NCg0KPGJvZHkgYmdjb2xvcj0iI0ZG RkZGRiIgbGluaz0iI0NDOTk5OSIgbGVmdG1hcmdpbj0iMCIgdG9wbWFyZ2lu PSIwIiBtYXJnaW53aWR0aD0iMCIgbWFyZ2luaGVpZ2h0PSIwIj4NCg0KPGNl bnRlcj4NCiAgPGJyPg0KICA8dGFibGUgd2lkdGg9IjYwMCIgYm9yZGVyPSIw IiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjEiPg0KICAgIDx0cj4N CiAgICAgIDx0ZCBiZ2NvbG9yPSIjOTkwMDAwIj48dGFibGUgd2lkdGg9IjYw MCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAi Pg0KICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCBiZ2NvbG9yPSIj RkZGRkZGIj4NCiAgICAgICAgICANCiAgICAgICAgICA8ZGl2IGFsaWduPSJy aWdodCI+PGltZyBzcmM9Imh0dHA6Ly93d3cubWFycmllZC1hbmQtbG9uZWx5 Lm5ldC9mcmllbmQxL2xvZ28uanBnIiB3aWR0aD0iNjAwIiBoZWlnaHQ9IjY1 Ij48YnI+DQogICAgICAgICAgPGI+PGZvbnQgY29sb3I9IiNDQzAwMzMiIHNp emU9IjIiIGZhY2U9IkdlbmV2YSwgQXJpYWwsIEhlbHZldGljYSwgc2Fucy1z ZXJpZiI+LS0tIFRoZSBtb3N0IGNvbXByZWhlbnNpdmUgYWR1bHQgbWF0Y2gg bWFraW5nIHNlcnZpY2U8YnI+DQogICAgICAgICAgPGJyPg0KICAgICAgICAg ICAgICAgICAgICA8L2ZvbnQ+PC9iPg0KPC9kaXY+PC90ZD4NCiAgICAgICAg ICA8L3RyPg0KICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCBiZ2Nv bG9yPSIjRkZGRkZGIj48Y2VudGVyPg0KICAgICAgICAgICAgICAgIDx0YWJs ZSB3aWR0aD0iNDAwIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIzIiBjZWxs cGFkZGluZz0iMSI+DQogICAgICAgICAgICAgICAgICA8dHIgYmdjb2xvcj0i Izk5MDAwMCI+DQogICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iMTAw Ij48aW1nIHNyYz0iaHR0cDovL3d3dy5tYXJyaWVkLWFuZC1sb25lbHkubmV0 L2ZyaWVuZDEvZnJvbnRwaWMtNC5naWYiIHdpZHRoPSIxMDAiIGhlaWdodD0i MTUwIj48L3RkPg0KICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjEw MCI+PGltZyBzcmM9Imh0dHA6Ly93d3cubWFycmllZC1hbmQtbG9uZWx5Lm5l dC9mcmllbmQxL2Zyb250cGljbS0yLmdpZiIgd2lkdGg9IjEwMCIgaGVpZ2h0 PSIxNTAiPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0i MTAwIj48aW1nIHNyYz0iaHR0cDovL3d3dy5tYXJyaWVkLWFuZC1sb25lbHku bmV0L2ZyaWVuZDEvZnJvbnRwaWMtMi5naWYiIHdpZHRoPSIxMDAiIGhlaWdo dD0iMTUwIj48L3RkPg0KICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9 IjEwMCI+PGltZyBzcmM9Imh0dHA6Ly93d3cubWFycmllZC1hbmQtbG9uZWx5 Lm5ldC9mcmllbmQxL2Zyb250cGljbS0xLmdpZiIgd2lkdGg9IjEwMCIgaGVp Z2h0PSIxNTAiPjwvdGQ+DQogICAgICAgICAgICAgICAgICA8L3RyPg0KICAg ICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgPGZvbnQg Y29sb3I9IiM5OTAwMDAiIHNpemU9IjEiIGZhY2U9IlZlcmRhbmEsIEFyaWFs LCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWYiPkNoZWNrIHNvbWUgb2Ygb3VyICBh Y3R1YWwgcGljdHVyZXMgZnJvbSA8Yj5yZWFsPC9iPiBtZW1iZXJzITwvZm9u dD48YnI+DQogICAgICAgICAgICAgICAgPHRhYmxlIHdpZHRoPSI0MjAiIGJv cmRlcj0iMCIgY2VsbHNwYWNpbmc9IjMiIGNlbGxwYWRkaW5nPSIxIj4NCiAg ICAgICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICAgICAgPHRk PjxjZW50ZXI+DQogICAgICAgICAgICAgICAgICA8Zm9udCBjb2xvcj0iIzk5 MDAwMCIgc2l6ZT0iMiIgZmFjZT0iVmVyZGFuYSwgQXJpYWwsIEhlbHZldGlj YSwgc2Fucy1zZXJpZiI+PGJyPg0KICAgICAgICAgICAgICAgICAgPGJyPg0K ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9mb250Pjxm b250IHNpemU9IjIiIGZhY2U9IlZlcmRhbmEsIEFyaWFsLCBIZWx2ZXRpY2Es IHNhbnMtc2VyaWYiPjwvZm9udD48Zm9udCBjb2xvcj0iIzk5MDAwMCIgc2l6 ZT0iMiIgZmFjZT0iVmVyZGFuYSwgQXJpYWwsIEhlbHZldGljYSwgc2Fucy1z ZXJpZiI+PGI+V2VsY29tZTwvYj4gdG8gb25lIG9mIHRoZSBJbnRlcm5ldCdz IHByZW1pZXIgYWR1bHQgbWF0Y2ggbWFraW5nIHNlcnZpY2VzIHdoZXJlIHBl b3BsZSBqdXN0IGxpa2UgeW91cnNlbGYgY2FuIHZpZXcgYW5kIHBsYWNlIHBl cnNvbmFsIGFkdmVydGlzZW1lbnRzIHdoaWNoIGFyZSB2aWV3ZWQgYnkgdGhv dXNhbmRzIGRhaWx5IQ0KPGJyPg0KICAgICAgICAgICAgICAgICAgPGJyPg0K ICAgICAgICAgICAgICAgICAgPC9mb250Pg0KICAgICAgICAgICAgICAgICAg ICAgIDwvY2VudGVyPg0KICAgICAgICAgICAgICAgICAgICAgIDxjZW50ZXI+ DQogICAgICAgICAgICAgICAgICA8Zm9udCBjb2xvcj0iIzk5MDAwMCIgc2l6 ZT0iMiIgZmFjZT0iVmVyZGFuYSwgQXJpYWwsIEhlbHZldGljYSwgc2Fucy1z ZXJpZiI+DQogICAgICAgICAgICAgICAgV2ViIEFkdWx0IENsYXNzaWZpZWRz IGhhcyB0aG91c2FuZHMgb2YgYWRzIC0gc29tZXRoaW5nIGZvciBldmVyeW9u ZSwgbWFsZSBvciBmZWxtYWxlISANCiAgICAgICAgICAgICAgICA8L2ZvbnQ+ DQogICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICA8Zm9udCBj b2xvcj0iIzk5MDAwMCIgc2l6ZT0iMiIgZmFjZT0iVmVyZGFuYSwgQXJpYWws IEhlbHZldGljYSwgc2Fucy1zZXJpZiI+PGJyPg0KICAgICAgICAgICAgICAg ICAgPGJyPg0KICAgICAgICAgICAgICAgICAgPC9mb250Pjxmb250IHNpemU9 IjIiIGZhY2U9IlZlcmRhbmEsIEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2Vy aWYiPg0KICAgICAgICAgICAgICAgICAgPGJyPg0KICAgICAgICAgICAgICAg ICAgPGltZyBzcmM9Imh0dHA6Ly93d3cubWFycmllZC1hbmQtbG9uZWx5Lm5l dC9mcmllbmQxL2hlYXJ0LmdpZiIgd2lkdGg9IjE1IiBoZWlnaHQ9IjEzIj4m bmJzcDsgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgIDxh IGhyZWY9Imh0dHA6Ly93d3cubWFycmllZC1hbmQtbG9uZWx5Lm5ldC9mcmll bmQxL3ZlcmlmeS5odG0iPjxiPkNsaWNrIGhlcmUgdG8gYmUgY29udmluY2Vk PC9iPjwvYT4mbmJzcDsmbmJzcDs8aW1nIHNyYz0iaHR0cDovL3d3dy5tYXJy aWVkLWFuZC1sb25lbHkubmV0L2ZyaWVuZDEvaGVhcnQuZ2lmIiB3aWR0aD0i MTUiIGhlaWdodD0iMTMiPjxicj4NCiAgICAgICAgICAgICAgICAgIDxmb250 IGNvbG9yPSIjOTkwMDAwIiBzaXplPSIxIj48Yj4od2lsbCBvcGVuIGluIGEg bmV3IHdpbmRvdyBmb3IgeW91ciBjb252ZW5pZW5jZSk8L2I+PC9mb250Pjwv Zm9udD48YnI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg PC9jZW50ZXI+PC90ZD4NCiAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAg ICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8YnI+DQog ICAgICAgIDwvY2VudGVyPjwvdGQ+DQogICAgICAgICAgPC90cj4NCiAgPC90 YWJsZT48L3RkPg0KICAgIDwvdHI+DQogIDwvdGFibGU+DQogIA0KICA8dGFi bGUgd2lkdGg9IjYwMCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2Vs bHBhZGRpbmc9IjAiPg0KICAgIDx0cj4NCjx0ZD4NCiAgICAgIDxwIGFsaWdu PSJjZW50ZXIiPjxmb250IGNvbG9yPSIjMDAwMDAwIj5UbyByZW1vdmUgeW91 cnNlbGYgZnJvbSB0aGlzIG9uZSB0aW1lIA0KICAgICAgICBvcHQtaW4gbWFp bGluZyA8YSBocmVmPSJodHRwOi8vd3d3LmZyZWU1bWVncy5jb20vcmVtL3Vu c3ViLmh0bWwiPkNsaWNrIEhlcmU8L2E+PC9mb250PjwvdGQ+DQo8L2Rpdj48 L3RkPg0KICAgIDwvdHI+DQogIDwvdGFibGU+DQogIDxicj4NCjwvY2VudGVy Pg0KPC9ib2R5Pg0KPC9odG1sPg0KDQo3NTI5SUhkYTQtMTQ5cEpkZDE0NzJS d1pRNy03MzNNU2wzMA== |
From: Raymond I. <xw...@ya...> - 2002-12-06 14:35:24
|
Hello Everyone, I've been playing with a new feature that I've add to dynapi called "Subclassing Events". Subclassing allows a user to manipulate, modify, or even discard events bound for other objects within dynapi, and in the process changing the way in which the dynobjects behaves. This new feature will make it possible for developers to easily extend or control the functions of widgets that were created using DynObjects. -- Raymond Irving __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Raymond I. <xw...@ya...> - 2002-12-05 13:19:40
|
Hi, In dynapi 2.5 you can only call one function with DynAPI.onLoad. DynAPI 2.9 supports the loading of more than one functions at load time. Here's what the code should look like: DynAPI.onLoad=function() { lp = new LoadPanel(); lp.setHTML("nada por aqui..."); lp.setSize(480,280); // height will be overwritten by default lp.moveTo(175,260); // <-- NOTE: lp will overlap lp2 lp.setZIndex(4); counter = 0; var el = new EventListener(); el.onload = function(e) { status = 'got load event '+ counter++; } lp.addEventListener(el); DynAPI.document.addChild(lp); lp2 = new LoadPanel(); lp2.setURL('images/empresa_r2_c1.jpg'); lp2.setSize(758,185); lp2.moveTo(15,0); // <-- NOTE: lp will overlap lp2 lp2.setZIndex(2); DynAPI.document.addChild(lp2); } NOTE: lp will overlap lp2 As for the setURL() and image path everything looks ok to me. Make sure that the page to the image is correct. -- Raymond Irving --- Webmaster <web...@fa...> wrote: > Hi, i have this code and it gives me error on > Internet Explorer 6 as if > the objects weren't defined, i'm pretty lame on JS > so maybe it's a > syntax error or something, but i just don't see it, > here's the code: > > -------------------------------------------------------------- > <head> > <script language="Javascript" > src="src/dynapi.js"></script> > <script language="Javascript"> > DynAPI.setLibraryPath('src/lib/'); > DynAPI.include('dynapi.api.*'); > DynAPI.include('dynapi.event.*') > DynAPI.include('dynapi.gui.loadpanel.js'); > </script> > <script language="Javascript"> > DynAPI.onLoad=function() { > lp = new LoadPanel(); > lp.setHTML("nada por aqui..."); > > lp.setSize(480,280); // height will be overwritten > by default > lp.moveTo(175,260); > lp.setZIndex(4); > > counter = 0; > var el = new EventListener(); > el.onload = function(e) { > status = 'got load event '+ counter++; > } > > lp.addEventListener(el); > > DynAPI.document.addChild(lp); > } > DynAPI.onLoad=function() { > lp2 = new LoadPanel(); > lp2.setURL('images/empresa_r2_c1.jpg'); > > lp2.setSize(758,185); > lp2.moveTo(15,0); > lp2.setZIndex(2); > > DynAPI.document.addChild(lp2); > } > //--> > </script> > </head> > -------------------------------------------------------------- > Thanks for help. > > Regards! > > PS: Also for loading an image setURL is ok or better > to use a dedicated > functions? Ah, and about paths, they are ok, this > script worked until i > added lp2 to it... > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Webmaster <web...@fa...> - 2002-12-05 12:30:41
|
Hi, i have this code and it gives me error on Internet Explorer 6 as if the objects weren't defined, i'm pretty lame on JS so maybe it's a syntax error or something, but i just don't see it, here's the code: -------------------------------------------------------------- <head> <script language="Javascript" src="src/dynapi.js"></script> <script language="Javascript"> DynAPI.setLibraryPath('src/lib/'); DynAPI.include('dynapi.api.*'); DynAPI.include('dynapi.event.*') DynAPI.include('dynapi.gui.loadpanel.js'); </script> <script language="Javascript"> DynAPI.onLoad=function() { lp = new LoadPanel(); lp.setHTML("nada por aqui..."); lp.setSize(480,280); // height will be overwritten by default lp.moveTo(175,260); lp.setZIndex(4); counter = 0; var el = new EventListener(); el.onload = function(e) { status = 'got load event '+ counter++; } lp.addEventListener(el); DynAPI.document.addChild(lp); } DynAPI.onLoad=function() { lp2 = new LoadPanel(); lp2.setURL('images/empresa_r2_c1.jpg'); lp2.setSize(758,185); lp2.moveTo(15,0); lp2.setZIndex(2); DynAPI.document.addChild(lp2); } //--> </script> </head> -------------------------------------------------------------- Thanks for help. Regards! PS: Also for loading an image setURL is ok or better to use a dedicated functions? Ah, and about paths, they are ok, this script worked until i added lp2 to it... |
From: Raymond I. <xw...@ya...> - 2002-12-04 15:46:04
|
I think mozilla 1.2 had some problems with dhtml which should have been fixed in 1.2.1 - I'm not 100% sure. It would however appears to me that the dynlayer was not loaded. try testing for this.elm or try doing the following test to see if mozilla 1.2 is the problem: <div id="test"></div> after page loads.... var elm=document.getElementById('test'); elm.style.zIndex=1; if an error was generated then mozilla 1.2 is at fault. -- Raymond Irving --- Jesse Vitrone <je...@my...> wrote: > Sorry - I forgot to mention the version - I'm using > dynapi 2.5.6 > > Jesse Vitrone wrote: > > > I'm using Mozilla 1.2 and I'm getting errors that > I don't get in > > Mozilla 1.1 > > > > When my page loads, I get this in the JavaScript > console: > > > > Error: this.css has no properties > > Source File: > > > http://localhost/willynicks/dynapi/src/lib/dynapi/api/dynlayer.js > > Line: 40 > > > > Line 40 of dynlayer.js is this: > > > > this.css.zIndex=this.z; > > > > Did something change in Mozilla 1.2 with the way > you reference the > > zIndex? > > I have another machine with Mozilla 1.1 on it and > it works fine when I > > run the same code. > > > > Has anyone else seen this problem? > > > > Thanks in advance, > > Jesse Vitrone > > > > > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > Visual Studio.NET > > comprehensive development tool, built to increase > your productivity. > > Try a free online hosted session at: > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Microsoft Visual > Studio.NET > comprehensive development tool, built to increase > your > productivity. Try a free online hosted session at: > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Jesse V. <je...@my...> - 2002-12-04 15:02:24
|
Sorry - I forgot to mention the version - I'm using dynapi 2.5.6 Jesse Vitrone wrote: > I'm using Mozilla 1.2 and I'm getting errors that I don't get in > Mozilla 1.1 > > When my page loads, I get this in the JavaScript console: > > Error: this.css has no properties > Source File: > http://localhost/willynicks/dynapi/src/lib/dynapi/api/dynlayer.js > Line: 40 > > Line 40 of dynlayer.js is this: > > this.css.zIndex=this.z; > > Did something change in Mozilla 1.2 with the way you reference the > zIndex? > I have another machine with Mozilla 1.1 on it and it works fine when I > run the same code. > > Has anyone else seen this problem? > > Thanks in advance, > Jesse Vitrone > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Microsoft Visual Studio.NET > comprehensive development tool, built to increase your productivity. > Try a free online hosted session at: > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Jesse V. <je...@my...> - 2002-12-04 14:55:30
|
I'm using Mozilla 1.2 and I'm getting errors that I don't get in Mozilla 1.1 When my page loads, I get this in the JavaScript console: Error: this.css has no properties Source File: http://localhost/willynicks/dynapi/src/lib/dynapi/api/dynlayer.js Line: 40 Line 40 of dynlayer.js is this: this.css.zIndex=this.z; Did something change in Mozilla 1.2 with the way you reference the zIndex? I have another machine with Mozilla 1.1 on it and it works fine when I run the same code. Has anyone else seen this problem? Thanks in advance, Jesse Vitrone |
From: Raymond I. <xw...@ya...> - 2002-12-04 14:18:14
|
--- Webmaster <web...@fa...> wrote: > Hi, just tested 2.5.6 load layer function, seems > nice, but how do i > determine if the layer is scrollable if the content > "overflows" the > layer size? Try getContentHeight() and getContentWidth() > And also what does exactly the clipping function in > dynapi? Same as in > normal DHTML (determine viewable size of an object) > or there is another > application i haven't thought of? It's the same as the one used in DHTML PS. Please remember to use "Reply to All" when replying making a reply -- Raymond Irving __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Raymond I. <xw...@ya...> - 2002-12-04 14:15:44
|
Hi Doug, Welcome come back to this mailing list. 2.9 (which will eventually become 3.0) is still in beta but you can download the 2.9.1 version at http://sourceforge.net/project/showfiles.php?group_id=5757 Take a look ChangeLog for more information PS. Please remember to use "Reply to All" when replying making a reply -- Raymond Irving --- Doug Melvin <do...@cr...> wrote: > <And from the deepest, darkest corner of hell a > voice was heard...> > > I HAVE RETURNED!!!! > > So.. at this point in time, what are the major > differences betwee 2.5.6 (no > new releases in 5 months?!?!) and 2.9? > Specifically in browser/platform support and library > size. > As well as any significant design differences? > > Anyone got any new beutiful sites to showcase? > Anyone die? > How is everyone? > How is still around from half a year ago? > > ----- Original Message ----- > From: "Raymond Irving" <xw...@ya...> > To: <dyn...@li...> > Sent: Tuesday, December 03, 2002 3:15 PM > Subject: Re: [Dynapi-Help] New to DynAPI... should i > start wih 2.5.6 or 2.9? > > > > Welcome aboard, > > > > Here's the low down (in my option) 2.5.6 has been > > tested by several users and is said to be stable > at > > this point in time. 2.9 (eventually 3.0) is the > future > > of dynapi. It's still in early beta and will need > to > > under go some more testing. 2.9 is faster, easier > and > > much more powerful than 2.5.6 > > > > PS. Please remember to use "Reply to All" when > > replying making a reply > > > > -- > > Raymond Irving > > > > > > --- Webmaster <web...@fa...> > wrote: > > > Hi, i'm new to DynAPI... should i start wih > 2.5.6 or > > > 2.9? it's one more > > > stable than other or something? > > > > > > Thanks in advance for your help. > > > > > > Regards! > > > > > > > > > __________________________________________________ > > Do you Yahoo!? > > Yahoo! Mail Plus - Powerful. Affordable. Sign up > now. > > http://mailplus.yahoo.com > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > Visual Studio.NET > > comprehensive development tool, built to increase > your > > productivity. Try a free online hosted session at: > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Microsoft Visual > Studio.NET > comprehensive development tool, built to increase > your > productivity. Try a free online hosted session at: > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Webmaster <web...@fa...> - 2002-12-04 11:09:57
|
Hi, just tested 2.5.6 load layer function, seems nice, but how do i determine if the layer is scrollable if the content "overflows" the layer size?=20 And also what does exactly the clipping function in dynapi? Same as in normal DHTML (determine viewable size of an object) or there is another application i haven't thought of? Regards! -----Mensaje original----- De: dyn...@li... [mailto:dyn...@li...] En nombre de Raymond Irving Enviado el: mi=E9rcoles, 04 de diciembre de 2002 0:16 Para: dyn...@li... Asunto: Re: [Dynapi-Help] New to DynAPI... should i start wih 2.5.6 or 2.9? Welcome aboard, Here's the low down (in my option) 2.5.6 has been tested by several users and is said to be stable at this point in time. 2.9 (eventually 3.0) is the future of dynapi. It's still in early beta and will need to under go some more testing. 2.9 is faster, easier and much more powerful than 2.5.6 PS. Please remember to use "Reply to All" when replying making a reply -- Raymond Irving =20 --- Webmaster <web...@fa...> wrote: > Hi, i'm new to DynAPI... should i start wih 2.5.6 or > 2.9? it's one more > stable than other or something? > =20 > Thanks in advance for your help. > =20 > Regards! >=20 __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Microsoft Visual Studio.NET=20 comprehensive development tool, built to increase your=20 productivity. Try a free online hosted session at: http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en _______________________________________________ Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Doug M. <do...@cr...> - 2002-12-04 06:20:23
|
<And from the deepest, darkest corner of hell a voice was heard...> I HAVE RETURNED!!!! So.. at this point in time, what are the major differences betwee 2.5.6 (no new releases in 5 months?!?!) and 2.9? Specifically in browser/platform support and library size. As well as any significant design differences? Anyone got any new beutiful sites to showcase? Anyone die? How is everyone? How is still around from half a year ago? ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: <dyn...@li...> Sent: Tuesday, December 03, 2002 3:15 PM Subject: Re: [Dynapi-Help] New to DynAPI... should i start wih 2.5.6 or 2.9? > Welcome aboard, > > Here's the low down (in my option) 2.5.6 has been > tested by several users and is said to be stable at > this point in time. 2.9 (eventually 3.0) is the future > of dynapi. It's still in early beta and will need to > under go some more testing. 2.9 is faster, easier and > much more powerful than 2.5.6 > > PS. Please remember to use "Reply to All" when > replying making a reply > > -- > Raymond Irving > > > --- Webmaster <web...@fa...> wrote: > > Hi, i'm new to DynAPI... should i start wih 2.5.6 or > > 2.9? it's one more > > stable than other or something? > > > > Thanks in advance for your help. > > > > Regards! > > > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up now. > http://mailplus.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Microsoft Visual Studio.NET > comprehensive development tool, built to increase your > productivity. Try a free online hosted session at: > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Jesse V. <je...@my...> - 2002-12-04 03:59:43
|
Raymond, Thanks for your help. I changed the "onload" to "onLoad" and it worked :) This link in the help section needs to be updated: http://dynapi.sourceforge.net/doccenter/index.php?Body%20onLoad%20Problems It shows the lowercase "onload". Thanks again for you help - keep up the great work folks. Jesse Raymond Irving wrote: >Hi Jesse, > >Just a few things to note: > >1) Make sure the <body> tag does not have the >onload="" event attribute. > >2) I believe should be as: > >DynAPI.onLoad = function() { > alert("hello"); >} > >Note: "onLoad" and not "onload" > >PS. Please remember to use "Reply to All" when >replying making a reply > >-- >Raymond Irving > >--- Jesse Vitrone <je...@my...> wrote: > > >>When my page loads, I need to call a method which >>creates some layers. >> >> >> >> >http://dynapi.sourceforge.net/doccenter/index.php?Body%20onLoad%20Problems > > >>Does this mean that I'm supposed to put something >>like this? >> >><script> >>DynAPI.onload = function() { >> alert("hello"); >>} >></script> >> >>When I add that to my page, nothing happens when the >>page loads. >> >>Any suggestions on what I'm doing wrong? >> >>Thanks in advance, >> Jesse >> >> >> >> >> >> >> >> >> >------------------------------------------------------- > > >>This SF.net email is sponsored by: Microsoft Visual >>Studio.NET >>comprehensive development tool, built to increase >>your >>productivity. Try a free online hosted session at: >> >> >> >http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > > >>_______________________________________________ >>Dynapi-Help mailing list >>Dyn...@li... >> >> >> >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > >__________________________________________________ >Do you Yahoo!? >Yahoo! Mail Plus - Powerful. Affordable. Sign up now. >http://mailplus.yahoo.com > > > |
From: Raymond I. <xw...@ya...> - 2002-12-03 23:22:49
|
In theory it should. Both 2.9 and 2.5.6 should support NS7. Your best chance is to give it a try. I've not loaded NS7 as yet but will do so soon and will be testing it with 2.9 PS. Please remember to use "Reply to All" when replying making a reply -- Raymond Irving --- Joe NguyenLe <ngu...@ci...> wrote: > Hi All, > > Does DynAPI work with NS 7? If yes which version > does any know? > > Thx, > > Joe N. > > > ------------------------------------------------------- > This SF.net email is sponsored by: Microsoft Visual > Studio.NET > comprehensive development tool, built to increase > your > productivity. Try a free online hosted session at: > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Raymond I. <xw...@ya...> - 2002-12-03 23:19:57
|
Hi Jesse, Just a few things to note: 1) Make sure the <body> tag does not have the onload="" event attribute. 2) I believe should be as: DynAPI.onLoad = function() { alert("hello"); } Note: "onLoad" and not "onload" PS. Please remember to use "Reply to All" when replying making a reply -- Raymond Irving --- Jesse Vitrone <je...@my...> wrote: > When my page loads, I need to call a method which > creates some layers. > > http://dynapi.sourceforge.net/doccenter/index.php?Body%20onLoad%20Problems > > Does this mean that I'm supposed to put something > like this? > > <script> > DynAPI.onload = function() { > alert("hello"); > } > </script> > > When I add that to my page, nothing happens when the > page loads. > > Any suggestions on what I'm doing wrong? > > Thanks in advance, > Jesse > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Microsoft Visual > Studio.NET > comprehensive development tool, built to increase > your > productivity. Try a free online hosted session at: > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Raymond I. <xw...@ya...> - 2002-12-03 23:15:59
|
Welcome aboard, Here's the low down (in my option) 2.5.6 has been tested by several users and is said to be stable at this point in time. 2.9 (eventually 3.0) is the future of dynapi. It's still in early beta and will need to under go some more testing. 2.9 is faster, easier and much more powerful than 2.5.6 PS. Please remember to use "Reply to All" when replying making a reply -- Raymond Irving --- Webmaster <web...@fa...> wrote: > Hi, i'm new to DynAPI... should i start wih 2.5.6 or > 2.9? it's one more > stable than other or something? > > Thanks in advance for your help. > > Regards! > __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Joe N. <ngu...@ci...> - 2002-12-03 19:45:49
|
Hi All, Does DynAPI work with NS 7? If yes which version does any know? Thx, Joe N. |
From: Webmaster <web...@fa...> - 2002-12-03 17:52:12
|
Hi, i'm new to DynAPI... should i start wih 2.5.6 or 2.9? it's one more stable than other or something? Thanks in advance for your help. Regards! |