[size=1]I have 2 movie clips each with the code:
onClipEvent(mouseDown){
if(hitTest(_root._xmouse,_root._ymouse)){
this.startDrag(false);
}
}
onClipEvent(mouseUp){
stopDrag();
}
which allows me to drag them around the screen. How can I get it so that if they are overlapping, when I click on the bottom movie clip it will automatically bring it to the front?[/size]