2011-03-31 81 views
0

有沒有一種簡單的方法來創建對象,您可以在動作中與鼠標進行交互。像幾行代碼?互動對象?

+0

這個問題不是很清楚。你能否更詳細地解釋你想如何與他們交互? – 2011-04-06 20:52:51

回答

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. 
}