最简单的,在这两个影片剪辑的帧上加如下代码,as3的
this.addEventListener(MouseEvent.MOUSE_DOWN,StartDragEvent);
0(MouseEvent.MOUSE_UP,StopDragEvent);
function StartDragEvent(e:MouseEvent):void
{
this.startDrag();
}
function StopDragEvent(e:MouseEvent):void
{
this.stopDrag();
}