stevenkeys2003 wrote:
I'm wanting to use move(), to move a checkbox object (on click) from x, y in original <mx:Panel id="panelA"> component to new x, y in different <mx:Panel id="panelB">.. possible?
I don't think you can do reparenting like that.
What you could do is, remove it from the original panel and create a new one using the destroyChild* and createChild* functions. You'd have to copy the properties over before destroying the original.
Manish

