Actionscript 交互对象?

Actionscript 交互对象?,actionscript,Actionscript,是否有一种简单的方法来创建可以在actionscript中与鼠标交互的对象。类似于几行代码?这个问题不是很清楚。你能解释一下你想如何与他们互动吗? var sprite:Sprite = new Sprite(); // create a new sprite. sprite.graphics.beginFill(0); // set fill color to black sprite.graphics.drawRect(0,0,100,100); // draw a square addCh

是否有一种简单的方法来创建可以在actionscript中与鼠标交互的对象。类似于几行代码?

这个问题不是很清楚。你能解释一下你想如何与他们互动吗?
var sprite:Sprite = new Sprite(); // create a new sprite.
sprite.graphics.beginFill(0); // set fill color to black
sprite.graphics.drawRect(0,0,100,100); // draw a square
addChild(sprite); // add the sprite to the display list making it appear on screen.
sprite.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown); // add responders for mouse interaction.
sprite.addEventListener(MouseEvent.MOUSE_UP, onMouseUp);

function onMouseDown(event:MouseEvent):void {
   // When the mouse button is released over the object, this code executes.
   Sprite(event.target).startDrag(); // make the object follow the mouse.
}

function onMouseUp(event:MouseEvent):void {
   // When the mouse button is pressed over the object, this code executes.
   Sprite(event.target).stopDrag(); // make the object stop following the mouse.
}