ActionScript 3 拖动图层基础知识

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 拖动图层基础知识相关的知识,希望对你有一定的参考价值。

private function init():void {		
	theDragClip.addEventListener( MouseEvent.MOUSE_DOWN, handleStartDrag);
	theDragClip.addEventListener( MouseEvent.MOUSE_UP, handleStopDrag);
}

private function handleStartDrag(e:MouseEvent) {
	//if (e.target == stage) { 
		theDragClip.startDrag();
		stage.addEventListener(MouseEvent.MOUSE_UP, handleStopDrag);
	//}
}

private function handleStopDrag(e:MouseEvent){
	theDragClip.stopDrag();
	stage.removeEventListener(MouseEvent.MOUSE_UP, handleStopDrag);
}

以上是关于ActionScript 3 拖动图层基础知识的主要内容,如果未能解决你的问题,请参考以下文章

actionscript 3 通过拖动拉伸和旋转动画剪辑箭头

ActionScript 3 手动拖动对象

ActionScript 3 拖动整个弹性应用程序窗口

ActionScript 3 拖动滚动

ActionScript 3 拖动旋转AS3

ActionScript 3开始和停止拖动