Hola
I’ve got a (hopefully) embarrassingly easy question. Hopefully
Basically the “app” allows you to drag various movieclips onto a mc. On release the movieclip is duplicated.
The question is: how can I set the parent mc of the duplicated mc?
In this case the movieclip should be attached to “videoArea”
SNippet
if(this.hitTest(videoArea)){
var duplicate:MovieClip;
duplicate = this.duplicateMovieClip("clip" + i, getNextHighestDepth());
duplicate.contentPath = this.contentPath;
duplicate.autoPlay=false;
duplicate.setSize(80, 80);
stageClips.push(duplicate);
}
Thx