是否有一种简单的方法来创建可以在actionscript中与鼠标交互的对象。像几行代码的东西?
答案 0 :(得分:1)
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.
}