Hello,
I try to build 4 layers in a frame. The layers are neatly positioned leaving
a row of 5 pixels between each of the layers. My source code looks like this
where "top.admin" is the destination frame:

objAdmin = new DynDocument(top.admin);
DynAPI.addChild(objAdmin);

var intWidth  = objAdmin.getWidth();
var intHeight = objAdmin.getHeight();

divOrdner   = new DynLayer('divOrdner',   5,   5,
                  intWidth - 10,               50, '#dddddd');
divOrdner.setHTML('divOrdner');
objAdmin.addChild(divOrdner);

divFelder   = new DynLayer('divFelder',   5,  60,
                  intWidth - 10,               50, '#eeeeee');
divFelder.setHTML('divFelder');
objAdmin.addChild(divFelder);

divListe    = new DynLayer('divListe',    5, 115,
                  intWidth - 10,  intHeight - 225, '#dddddd');
divListe.setHTML('divListe');
objAdmin.addChild(divListe);

divOptionen = new DynLayer('divOptionen', 5, 120 + intHeight - 225,
intWidth - 10,              100, '#eeeeee');
divOptionen.setHTML('divOptionen');
objAdmin.addChild(divOptionen);

When I use Netscape 4.75 and resize the browser window, the browser either
loops eating more and more memory or it just hangs. The code above is
invoked by pressing a button, so I assume, it is not my code which loops.

Is there still a bug Netscape resizing or do I have to code something for
resizing?

Thanks,
Tobias.

------------------------------------------------
Falk eSolutions AG
Zechenstr. 70
47443 Moers
Tel. 02841-90973-30
Fax. 02841-90973-31


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

Reply via email to