Re: [Dynapi-Help] Drag layer outside the container...

2001-02-05 Thread Michael Pemberton
yer.addChild(myChild) > DynAPI.document.addChild(myLayer) > } > > function TestIt() { > myChild.moveTo(myChild.getPageX(), myChild.getPageY()); > myChild.removeFromParent(); > DynAPI.document.addChild(myChild) > } > > > > > name=buTest> > > &

RE: [Dynapi-Help] Drag layer outside the container...

2001-02-05 Thread GORTSILAS ANDREAS
Wednesday, January 31, 2001 2:10 AM To: [EMAIL PROTECTED] Subject: Re: [Dynapi-Help] Drag layer outside the container... look at the "drag 'n' drop" examples. This involves removing the layer from it's parent when you start dragging it and adding it to the document. Th

Re: [Dynapi-Help] Drag layer outside the container...

2001-01-30 Thread Michael Pemberton
look at the "drag 'n' drop" examples. This involves removing the layer from it's parent when you start dragging it and adding it to the document. Then adding it to the target when you drop it over it. Andreas Gortsilas wrote: > In the following source I want to drag the "myChildLevel2" from

[Dynapi-Help] Drag layer outside the container...

2001-01-30 Thread Andreas Gortsilas
In the following source I want to drag the "myChildLevel2" from "myChild" to "myChild2" but when the draged layer cannot get out of the "myChild" layer (container) What I must do in order to allow the "myChildLevel2" layer to be draged outside the container? Maybe I must change the container o