Im trying to do a ‘drap&drop onto a hit target’ inside a movieclip, the usual script doesn’t work as it would if it was on the maintimeline of a movie it soenst seem to pickup the hittarget, the basic code is
_root.dragndrop.ball.onPress = function() {
this.startDrag();
};
_root.dragndrop.ball.onRelease = function() {
this.stopDrag();
if (ball._droptarget == “/hittarget”) {
ball._visible = false;
}
};
anyone got any ideas? The hitatrget and ball have to be in the dragndrop movieclip, thanks