如何在flash中给影片剪辑添加语言让鼠标拖动移动
1个回答
展开全部
AS3.0给你影片剪辑起实例名 mc 在时间轴上写代码
mc.addEventListener(MouseEvent.MOUSE_DOWN,StartDrag)
mc.addEventListener(MouseEvent.MOUSE_UP,StopDrag)
function StartDrag(event:MouseEvent){
startDrag()
}
function StopDrag(event:MouseEvent){
stopDrag()
}
as2.0 直接在你的影片剪辑上写代码
on(press){
this.startDrag()
}
on(release){
this.stopDrag()
}
mc.addEventListener(MouseEvent.MOUSE_DOWN,StartDrag)
mc.addEventListener(MouseEvent.MOUSE_UP,StopDrag)
function StartDrag(event:MouseEvent){
startDrag()
}
function StopDrag(event:MouseEvent){
stopDrag()
}
as2.0 直接在你的影片剪辑上写代码
on(press){
this.startDrag()
}
on(release){
this.stopDrag()
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询