1、首先確實是需要將需要拖拽的Flash元素,按下F8快捷鍵轉換成MovieClip元件,然后將該元件放置到舞臺并且將實例名命名為比如myMC。
2、然后在時間軸寫代碼,myMC.addEventListener(MouseEvent.MOUSE_DOWN,myDown)
;function myDown(event:MouseEvent):void{myMCstartDrag();myMC.addEventListener(MouseEvent.MOUSE_UP,myUp);}function myUp(event:MouseEvent):void{event.target.stopDrag(); }備注:這是AS3最簡單的方法來了,雖然不推薦在時間軸寫代碼。