I find out that:
  if a layer is position aligned to bottom of the browser window, then if
the height of the contents of this layer is larger than the layer height,
the scrollbars of the main window appears!!!

It looks like the clipped contents of the dynlayer affect the main
window!!!!

.....
    DynAPI.onLoad=function() {
      x = new DynLayer();
      x.setSize(600, 100);
      x.moveTo(0, DynAPI.document.h-x.h);
      x.setBgColor('blue');
      DynAPI.document.addChild(x);
    }
    
    function DoOnClick() {
      x.setHTML('<form><textarea id="meAny" name="meAny" rows=8
cols=70></textarea></form>');
    }
  //-->
  </script>

</HEAD>
<BODY>
  <input type="button" onclick="DoOnClick()" value="Set html">
......

Any ideas?

Andreas Gortsilas


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

Reply via email to