Re: [Dynapi-Dev] Bug in specificRemove

2001-07-18 Thread Robert Rainwater
AM EST, Yurij wrote about "[Dynapi-Dev] Bug in specificRemove": > You can see this if you write > myLayer=new DynLayer(null,100,100,100,100,"#ff"); > myChild=new DynLayer(null,50,50,50,100,"#00ff00"); > myLayer.addChild(myChild); > Dy

[Dynapi-Dev] Bug in specificRemove

2001-07-18 Thread Yurij Silvestrov
You can see this if you write myLayer=new DynLayer(null,100,100,100,100,"#ff"); myChild=new DynLayer(null,50,50,50,100,"#00ff00"); myLayer.addChild(myChild); DynAPI.document.addChild(myLayer); setTimeout("myLayer.addChild(myChild)",2000); after second addChild child layer disappears! Attach