我正在使用以下法典来抓一个物体。 我正在使用一条直径限制物体只向轴体移动。 在物体之外,我需要停止拖拉。 纽伦德轮到场,但当 mo改用 but子转移时,烟.仍拖.。 我使用的是:
var rectangle:Rectangle = new Rectangle(-1400, 600, 4500, 0);
stage.addEventListener(MouseEvent.MOUSE_DOWN,mouseStartDrag);
function mouseStartDrag(motion:MouseEvent):void
{
strip_mc.startDrag(false, rectangle);
}
stage.addEventListener(MouseEvent.MOUSE_UP, mouseStopDrag);
function mouseStopDrag(motion:MouseEvent):void
{
strip_mc.stopDrag();
}
strip_mc.buttonMode = true;
Thanks for any help