From: Quang N. <ye...@ho...> - 2001-12-07 01:28:58
|
The following code will not work: <script language="Javascript" src="dhtmllib/dynapi.js"></script> <script language="Javascript"> DynAPI.setLibraryPath('dhtmllib'); DynAPI.include('dynapi.api.*'); DynAPI.include('dynapi.ext.inline.js') </script> <script LANGUAGE="JavaScript"> function start() {step1Title = this.document.getAll()['step1TitleDiv']} DynAPI.onLoad = function() { start(); alert("GOOD") } </script></head><body> <div id='step1TitleDiv'>test</div> </BODY> Does anyone know if it is possible to call this.document.getAll() from anywhere but in DynAPI.onLoad? _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp |
From: Doug M. <do...@cr...> - 2001-12-07 14:13:56
|
First: In order to FIND the inline layers you need to call DynAPI.document.fintLayers(). Second: This will only work with layers that have been set as "position:absolute: ----- Original Message ----- From: "Quang Nguyen" <ye...@ho...> To: <dyn...@li...> Sent: Thursday, December 06, 2001 8:28 PM Subject: [Dynapi-Help] (no subject) > The following code will not work: > > > <script language="Javascript" src="dhtmllib/dynapi.js"></script> > <script language="Javascript"> > DynAPI.setLibraryPath('dhtmllib'); > DynAPI.include('dynapi.api.*'); > DynAPI.include('dynapi.ext.inline.js') > </script> > <script LANGUAGE="JavaScript"> > function start() > {step1Title = this.document.getAll()['step1TitleDiv']} > DynAPI.onLoad = function() > { > start(); > alert("GOOD") > } > </script></head><body> > <div id='step1TitleDiv'>test</div> > </BODY> > > > Does anyone know if it is possible to call this.document.getAll() from > anywhere but in DynAPI.onLoad? > > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Raymond I. <xw...@ya...> - 2001-12-07 14:29:19
|
Instead of this.document.getAll()['step1TitleDiv']} use DynAPI.document.getAll()['step1TitleDiv']} --- Quang Nguyen <ye...@ho...> wrote: > The following code will not work: > > > <script language="Javascript" > src="dhtmllib/dynapi.js"></script> > <script language="Javascript"> > DynAPI.setLibraryPath('dhtmllib'); > DynAPI.include('dynapi.api.*'); > DynAPI.include('dynapi.ext.inline.js') > </script> > <script LANGUAGE="JavaScript"> > function start() > {step1Title = > this.document.getAll()['step1TitleDiv']} > DynAPI.onLoad = function() > { > start(); > alert("GOOD") > } > </script></head><body> > <div id='step1TitleDiv'>test</div> > </BODY> > > > Does anyone know if it is possible to call > this.document.getAll() from > anywhere but in DynAPI.onLoad? > > _________________________________________________________________ > Get your FREE download of MSN Explorer at > http://explorer.msn.com/intl.asp > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com |
From: Jorge B. Z. <gi...@re...> - 2001-12-26 11:18:39
|
From: <sol...@ya...> - 2002-07-18 11:20:32
Attachments:
DK.zip
|
hello, I am using the library DynApi to program a imageViewer, the same as that of http://www.donnakaran.com I am not able to load the imagenes in HTML document.I think that the error is in the imageViewer.js file. Can somebody help me? Thanks from Barcelona. Miguel _______________________________________________________________ Yahoo! Messenger Nueva versión: Webcam, voz, y mucho más ¡Gratis! Descárgalo ya desde http://messenger.yahoo.es |
From: Doug S. <do...@mi...> - 2002-08-09 18:11:00
|
Hi, I have just started playing with the DynAPI and have some questions. 1. Is there a searchable archive of this maillist? I followed the links from the sourceforge pages, but there didn't seem to be any good way to search through the messages. I ended up clicking on a lot of links, seeing a few message titles, clicking on a few of those, going back, starting over... There's gotta be a way to search for topics/keywords that I'm missing. Can someone point me in the right direction? 2. I've been playing with dragging layers around and have run into a problem. I created a large layer (my masterLayer) and then gave it a couple of children (my subLayers). The masterLayer is draggable. When I drag it, it pulls all the subLayers along with it, which is what I want. The subLayers are also draggable. Originally, I had trouble getting them out of the masterLayer. If I enabled drag events on the subLayers, without imposing dragBroundaries, I could drag them right off the masterLayer, and more or less, into oblivion. That is, when they hit the edge of the masterLayer, they would disappear. (If I did not "let go of them, I could drag them back to the masterLayer). Then I found some code, which allowed me get the subLayers off of the masterLayer and onto the main document. target.removeFromParent() DynAPI.document.addChild(target); With this code, I can drag my subLayers right off the masterLayer, and they don't disappear. The problem is, that if I move the masterLayer first and then try to move a subLayer, the subLayer first jumps to it's original position on the screen and then, although it is not under the mouse cursor, it can be dragged around. (The effect is actually kinda neat, but it's not what I am looking for.) I've tried to reset the subLayer's position in the ondragstart event to where it actually is on screen (or where I want it to be), but this seems to get ignored, and I end up dragging around something which is nowhere near the mouse cursor. Is this something that has been done before? Can someone help me out: Here's the relevant code, in case it helps: function createMasterLayer() { masterLayer = new DynLayer(null, 0, 0, 520, 520, "#dd00ff") DynAPI.document.addChild(masterLayer) DragEvent.setDragBoundary(masterLayer) DragEvent.enableDragEvents(masterLayer) } function createSubLayer(count,x,y,w,h, color) { subLayer = new DynLayer(null, x, y, w, h, color) subLayerListener=new EventListener(subLayer) subLayerListener.ondragstart=function(e) { target=e.getTarget() var absX = target.getX() + masterLayer.getX() var absY = target.getY() + masterLayer.getY() target.removeFromParent() DynAPI.document.addChild(target); target.moveTo(absX,absY) } subLayerListener.ondragend=function(e) { target=e.getTarget() paren=e.getSource() target.setBgColor(color) masterLayer.setBgColor("blue") } subLayer.addEventListener(subLayerListener) DragEvent.setDragBoundary(subLayer) DragEvent.enableDragEvents(subLayer) masterLayer.addChild(subLayer) } DynAPI.onLoad= function() { createMasterLayer() for(x=1; x<=50; x++) { createSubLayer(x,x*10, x*10, 1*10,1*10,"#aa00bb") } } |
From: Bernard S. <ber...@la...> - 2002-08-29 07:42:16
|
Hi everybody, I sent a mail last week about dFrameAPI. Thanks to all who went for a walk to my site ( www.dFrameAPI.com <http://www.dframeapi.com/> ). The problem is that It seems DynAPI is a dead project and http://sourceforge.net/projects/dynapi/ a ghost site. Nothing posted in it is younger than 7 months. So this mail is a call to the 11 developers and admins of DynAPI: If DynAPI is still alive just tell it. If possible also tell why no release since 2.5.7, why bugs are not assigned, why, up to what I can check, you never are in the mail lists ... Any news would be great, Thanks! Bernard Squale |
From: Jordi M. <jmi...@or...> - 2002-08-29 08:28:31
|
I'm pretty sure most of the 11 developers listed in the sourceforge site are long time gone. I'm currently around ( I'm the mailing list moderator, you wouldn't believe the amounts of spam I moderate away every day ) but I don't think I will do any releases in the near future. To me the main problems with the core API are solved, and I don't find any attractive in programing widgets. Besides, I have personally dropped older browsers from my projects here at work, so I don't have a need for the API anymore. And neither does a lot of other people, I think. For the ones left with a need to support 4.x browsers, the current releases should suffice. |
From: Doubt F. <mrd...@ho...> - 2002-12-18 16:52:57
|
Hi all, I have just joined the list, so firstly, Hello. I have a quick question which I hope someone could help me with. I am using the DynAPI to manage layers and I was starting on a fun little project that -could- easily involve tens of layers. Now, my question is this, is it less memory intensive to create and delete new layers rather than using one single layer and constantly wiping the html and rewriting it to that layer? Thank you all, MrDoubtFire _________________________________________________________________ MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*. http://join.msn.com/?page=features/virus |
From: Raymond I. <xw...@ya...> - 2002-12-18 19:09:16
|
It's much faster to rewrite the HTML of a layer than to create a new layer. -- Raymond Irving --- Doubt Fire <mrd...@ho...> wrote: > Hi all, > > I have just joined the list, so firstly, Hello. > > I have a quick question which I hope someone could > help me with. I am using > the DynAPI to manage layers and I was starting on a > fun little project that > -could- easily involve tens of layers. Now, my > question is this, is it less > memory intensive to create and delete new layers > rather than using one > single layer and constantly wiping the html and > rewriting it to that layer? > > Thank you all, > > MrDoubtFire > > > > > > _________________________________________________________________ > MSN 8 helps eliminate e-mail viruses. Get 2 months > FREE*. > http://join.msn.com/?page=features/virus > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: Order your > Holiday Geek Presents Now! > Green Lasers, Hip Geek T-Shirts, Remote Control > Tanks, Caffeinated Soap, > MP3 Players, XBox Games, Flying Saucers, WebCams, > Smart Putty. > T H I N K G E E K . C O M > http://www.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-18 20:08:54
|
Hi, i just wanted some info on how i can make a link so it does two "get URL", i'm using iframes for changing content and a top banner image, so each time a link is clicked there is 2 iframes that change...=20 I already tested that with flash (Actionscript, easy as iframes can be referred as targets names) but i have no idea on how to do that for standard text links, i suppose using javascript, or maybe someone has a better idea? Thanks in advance for your help. ------------------------------------------------------------------------ ------- 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, 18 de diciembre de 2002 20:09 Para: dyn...@li... Asunto: Re: [Dynapi-Help] (no subject) It's much faster to rewrite the HTML of a layer than to create a new layer. -- Raymond Irving --- Doubt Fire <mrd...@ho...> wrote: > Hi all, >=20 > I have just joined the list, so firstly, Hello. >=20 > I have a quick question which I hope someone could > help me with. I am using > the DynAPI to manage layers and I was starting on a > fun little project that=20 > -could- easily involve tens of layers. Now, my > question is this, is it less=20 > memory intensive to create and delete new layers > rather than using one=20 > single layer and constantly wiping the html and > rewriting it to that layer? >=20 > Thank you all, >=20 > MrDoubtFire >=20 >=20 >=20 >=20 >=20 > _________________________________________________________________ > MSN 8 helps eliminate e-mail viruses. Get 2 months > FREE*. > http://join.msn.com/?page=3Dfeatures/virus >=20 >=20 >=20 > ------------------------------------------------------- > This SF.NET email is sponsored by: Order your > Holiday Geek Presents Now! > Green Lasers, Hip Geek T-Shirts, Remote Control > Tanks, Caffeinated Soap, > MP3 Players, XBox Games, Flying Saucers, WebCams, > Smart Putty. > T H I N K G E E K . C O M =20 > http://www.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: Order your Holiday Geek Presents Now! Green Lasers, Hip Geek T-Shirts, Remote Control Tanks, Caffeinated Soap, MP3 Players, XBox Games, Flying Saucers, WebCams, Smart Putty. T H I N K G E E K . C O M http://www.thinkgeek.com/sf/ _______________________________________________ Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Raymond I. <xw...@ya...> - 2002-12-19 14:26:10
|
Hi webmaster, Try this: function loadURL(a,b){ iframe1.location.href=a; iframe2.location.href=b; } here's the html: <a href="javascript:void(null);" onclick="loadURL('page1.html','page2.html');">Click Here</a> -- Raymond Irving --- Webmaster <web...@fa...> wrote: > Hi, i just wanted some info on how i can make a link > so it does two "get > URL", i'm using iframes for changing content and a > top banner image, so > each time a link is clicked there is 2 iframes that > change... > > I already tested that with flash (Actionscript, easy > as iframes can be > referred as targets names) but i have no idea on how > to do that for > standard text links, i suppose using javascript, or > maybe someone has a > better idea? > > Thanks in advance for your help. > > ------------------------------------------------------------------------ > ------- > 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, 18 de diciembre de 2002 20:09 > Para: dyn...@li... > Asunto: Re: [Dynapi-Help] (no subject) > > > > It's much faster to rewrite the HTML of a layer than > to create a new layer. > > -- > Raymond Irving > > --- Doubt Fire <mrd...@ho...> wrote: > > Hi all, > > > > I have just joined the list, so firstly, Hello. > > > > I have a quick question which I hope someone could > > help me with. I am using > > the DynAPI to manage layers and I was starting on > a > > fun little project that > > -could- easily involve tens of layers. Now, my > > question is this, is it less > > memory intensive to create and delete new layers > > rather than using one > > single layer and constantly wiping the html and > > rewriting it to that layer? > > > > Thank you all, > > > > MrDoubtFire > > > > > > > > > > > > > _________________________________________________________________ > > MSN 8 helps eliminate e-mail viruses. Get 2 months > > FREE*. > > http://join.msn.com/?page=features/virus > > > > > > > > > ------------------------------------------------------- > > This SF.NET email is sponsored by: Order your > > Holiday Geek Presents Now! > > Green Lasers, Hip Geek T-Shirts, Remote Control > > Tanks, Caffeinated Soap, > > MP3 Players, XBox Games, Flying Saucers, > WebCams, > > Smart Putty. > > T H I N K G E E K . C O M > > http://www.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: Order your > Holiday Geek Presents Now! > Green Lasers, Hip Geek T-Shirts, Remote Control > Tanks, Caffeinated Soap, > MP3 Players, XBox Games, Flying Saucers, WebCams, > Smart Putty. > T H I N K G E E K . C O M > http://www.thinkgeek.com/sf/ > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: Order your > Holiday Geek Presents Now! > Green Lasers, Hip Geek T-Shirts, Remote Control > Tanks, Caffeinated Soap, > MP3 Players, XBox Games, Flying Saucers, WebCams, > Smart Putty. > T H I N K G E E K . C O M > http://www.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: Joe N. <ngu...@ci...> - 2002-12-30 16:28:24
|
Hi All, Does anyone know where I can find an example of tooltips using DynAPI? Thx, joe n. |
From: Raymond I. <xw...@ya...> - 2002-12-30 16:38:16
|
Hi, Check out http://www.richardinfo.com/examples/php/examples.html and search for tooltip -- Raymond Irving --- Joe NguyenLe <ngu...@ci...> wrote: > Hi All, > > Does anyone know where I can find an example of > tooltips using DynAPI? > > Thx, > > joe n. > > > ------------------------------------------------------- > 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: Astarte T. <as...@ve...> - 2003-01-21 18:24:29
|
Turlar=FDm=FDz=3A SAFRANBOLU-ABANT 8-12 =DEUBAT VE 12-16 =DEUBAT 59=2E975=2E000 TL x 4 TAKS=DDT KAPADOKYA 9-13 =DEUBAT VE 12-16 =DEUBAT 47=2E450=2E000 TL x 4 TAKS=DDT KAPADOKYA 7-10 =DEUBAT 38=2E725=2E000 TL X 4 TAKS=DDT ANTALYA 11-16 =DEUBAT 64=2E975=2E000 TL x 4 TAKS=DDT ASSOS-KAZDA=D0LARI-AYVALIK-=C7ANAKKALE 9-13 =DEUBAT VE 12-16 =DEUBAT 59=2E975=2E000 TL x 4 TAKS=DDT BULGAR=DDSTAN- BOROVETS VE PAMPOROVA'DA KAYAK 10-16 =DEUBAT 199 $ BULGAR=DDSTAN- BOROVETS VE PAMPOROVA'DA KAYAK 12-16 =DEUBAT 139 $ Sitemize bir klik uzakl=FDktas=FDn=FDz=2E www=2Eastarteturizm=2Ecom Bizi ve sitemizi ziyaret edin=2E SAYGILARIMIZLA ASTARTE TUR=DDZM TEL=3A =28 0232 =29 4467822 =DDstanbul=3A 0542 - 422 32 97 =D6zcan G=FCd=FClo=F0lu |
From: Tarek M. N. <Tar...@it...> - 2003-02-20 14:23:40
|
Tarek M. Nabil Software Engineer ITWorx Tar...@it... Free Zone, Area 7 (B), Block (J), Nasr City, Cairo, Egypt TEL.: 20-2-2766226 http://www.itworx.com =20 |
From: Dev <de...@ti...> - 2003-06-11 08:24:20
|
From: <sol...@ya...> - 2003-09-04 16:02:57
|
Hi! I would like to unsubscribe from the dynapi mailing list. thank you for your time, Miguel ___________________________________________________ Yahoo! Messenger - Nueva versión GRATIS Super Webcam, voz, caritas animadas, y más... http://messenger.yahoo.es |
From: Raymond I. <xw...@ya...> - 2003-09-04 16:50:06
|
So sorry to see you leave :( http://lists.sourceforge.net/lists/listinfo/dynapi-help To change your subscription (set options like digest and delivery modes, get a reminder of your password, or unsubscribe from Dynapi-Help), enter your subscription email address: -- Raymond Irving --- Miguel Sola <sol...@ya...> wrote: > Hi! > > I would like to unsubscribe from the dynapi mailing > list. > > thank you for your time, > > Miguel > > > > > > ___________________________________________________ > Yahoo! Messenger - Nueva versión GRATIS > Super Webcam, voz, caritas animadas, y más... > http://messenger.yahoo.es > > > ------------------------------------------------------- > 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! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: donnaMarie g. <twi...@ya...> - 2003-10-08 01:27:21
|
please dont dont send me emails anymore --------------------------------- Do you Yahoo!? The New Yahoo! Shopping - with improved product search |
From: donnaMarie g. <twi...@ya...> - 2003-10-08 01:35:46
|
donnaMarie glischinski <twi...@ya...> wrote:please dont dont send me emails anymore --------------------------------- Do you Yahoo!? The New Yahoo! Shopping - with improved product search --------------------------------- Do you Yahoo!? The New Yahoo! Shopping - with improved product search |
From: Scott A. L. <sc...@sc...> - 2000-10-26 17:06:04
|
I think Tarun is right. In fact, if you use an absolutely positioned layer but don't specify height, the content will cause the layer to expand vertically, like a table cell (at least it works for me). Maybe then you can grab them with findLayers? Tarun R Elankath wrote: > > Hey why dont you just use plain statically positioned inline layers with the > content instead. Netscape then gives 'em good ol' scollbars. > Most of the functionality of Dynlayers is already available to inline layers > except for (a few) bugs regarding event capturing in nested layers > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Ben S. <ben...@tr...> - 2000-10-26 17:28:00
|
My widget basically takes a series of layers and gives them "tree-like" properties... you can expand and collapse parts of the document without re-submitting the page. I'm drawing a lot on the DynAPI event model to ensure cross-broswer (and future browser!) compatibility. The sticking poing has been Netscape's unwillingness to resize the document... however, IlMaestro's suggestion (see previous thread) concerning setting document.height seems to be working very nicely. Thanks to everybody for their help and suggestions! ben Scott Andrew LePera wrote: > > I think Tarun is right. In fact, if you use an absolutely positioned > layer but don't specify height, the content will cause the layer to > expand vertically, like a table cell (at least it works for me). Maybe > then you can grab them with findLayers? > > Tarun R Elankath wrote: > > > > Hey why dont you just use plain statically positioned inline layers with the > > content instead. Netscape then gives 'em good ol' scollbars. > > Most of the functionality of Dynlayers is already available to inline layers > > except for (a few) bugs regarding event capturing in nested layers -- Ben Sargent Montage eIntegration Inc. www.montage.ca GFX: www.infinitespaces.com PGP: /pgpkey.txt |
From: Scott A. L. <sc...@sc...> - 2000-10-26 17:34:45
|
Hmm. Can you do that in IE too somehow? If so, maybe we should add that as a method of DynDocument. A "clipping" method that sets document width/height at runtime. Ben Sargent wrote: > > My widget basically takes a series of layers and gives them "tree-like" > properties... you can expand and collapse parts of the document without > re-submitting the page. I'm drawing a lot on the DynAPI event model to > ensure cross-broswer (and future browser!) compatibility. The sticking > poing has been Netscape's unwillingness to resize the document... > however, IlMaestro's suggestion (see previous thread) concerning setting > document.height seems to be working very nicely. > > Thanks to everybody for their help and suggestions! > > ben > > Scott Andrew LePera wrote: > > > > I think Tarun is right. In fact, if you use an absolutely positioned > > layer but don't specify height, the content will cause the layer to > > expand vertically, like a table cell (at least it works for me). Maybe > > then you can grab them with findLayers? > > > > Tarun R Elankath wrote: > > > > > > Hey why dont you just use plain statically positioned inline layers with the > > > content instead. Netscape then gives 'em good ol' scollbars. > > > Most of the functionality of Dynlayers is already available to inline layers > > > except for (a few) bugs regarding event capturing in nested layers > > -- > Ben Sargent > Montage eIntegration Inc. > www.montage.ca > GFX: www.infinitespaces.com > PGP: /pgpkey.txt > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |