I have three movieClips (Columns) and each MovieClip contains diffrent number of child movieclips. I want to drag each child clip to another Columns.
So how can I change the child to another parent in action script 3.0
I have three movieClips (Columns) and each MovieClip contains diffrent number of child movieclips. I want to drag each child clip to another Columns.
So how can I change the child to another parent in action script 3.0
I would removeChild from parent (column), add to stage (so its on top and you can drag it over your columns). And on release, determine over which column your mouse is, then simply addChild to that column (remove from stage first).