Hi everyone,
i have an issue that needs to be solved right a way…
I have crated a movie clip and placedthis action on the keyframe so that I can Drag and Drop it.
square_mc.onPress = function() {
this.startDrag(false, 40, 50, 260, 150);
}
square_mc.onRelease = square_mc.onReleaseOutside = function() {
this.stopDrag();
}It works perfectly but…
I need the content of the “square_mc” to be active as well.
So that if a button is placed inside the “square_mc” I can press it.
Any ideas? Thank you in advance
Katerina Res