0

我希望能够锁定鼠标以仅沿弧线移动。这可能吗?如果是这样怎么办?我试过在谷歌和论坛上寻找。我所发现的只是将影片剪辑锁定到路径。我在 Adob​​e Flash CS6 中使用 ActionScript 3。

4

2 回答 2

0
  • 隐藏鼠标光标
  • 创建自定义光标(如实际光标)
  • 更改光标的位置(使用鼠标位置)

这段代码会给你一个想法

Mouse.hide();
var path:Array=[new Point(0,0),new Point(50,20),new Point(150,40),new Point(250,60),new Point(300,70),new Point(400,80)];
var myCursor:Sprite=new Sprite();
myCursor.graphics.beginFill(0);
myCursor.graphics.drawCircle(0,0,5);
myCursor.graphics.endFill();
addChild(myCursor);

stage.addEventListener(MouseEvent.MOUSE_MOVE,refreshCursorPosition);
function refreshCursorPosition(e:MouseEvent):void{
    if(e.stageX<0 || e.stageX>stage.stageWidth)
        return;
    var pos:int=Math.floor(e.stageX*path.length/stage.stageWidth);
    myCursor.x=path[pos].x;
    myCursor.y=path[pos].y;
}
于 2013-08-25T19:12:33.117 回答
0

该文档可能是您正在寻找的。 http://evolve.reintroducing.com/2011/05/09/as3/as3-drag-a-clip-along-an-arc/

先看一下例子。

于 2013-08-25T19:23:04.837 回答