Hi Flashkits!
I'm trying to drag multiple MC's around with the normal metod:
function mouseDownHandler(event:MouseEvent):void {
event.target.startDrag(false);
}
function mouseUpHandler(event:MouseEvent):void {
event.target.stopDrag();
}
But it only works on the MC first added (addChild).. Actually it feels like there's pice of glass between the first added MC's and the ones "underneath".
I really hope someone can lead me in the right direction - i has been bugging me for hours now..