当前位置: 首页 > Flash > 正文

FLASH中鼠标移动到一定区域停止播放动画代码

妙网小编 发表于2015年5月6日 15:02

FLASH中鼠标移动到一定区域停止播放动画代码:

简单的:仅控制Y轴坐标

_root.onEnterFrame = function(){
 if(_root._ymouse>609 and _root._ymouse<660){
  stop();
 }
 else{
  play();
 }

}

复杂的:控制和判断X轴和Y轴坐标

_root.onEnterFrame = function(){
 if(_root._ymouse>0 and _root._ymouse<424){
  myVar=false;
 }
 if(_root._ymouse>425 and _root._ymouse<500){
  myVar=true;
 }
 if(_root._xmouse>0 and _root._xmouse<30 and myVar==true){
  imgBar.prevFrame();
  imgBar.prevFrame();
  imgBar.prevFrame();
 }else{imgBar.play();}
 if(_root._xmouse>30 and _root._xmouse<60 and myVar==true){
  imgBar.prevFrame();
  imgBar.prevFrame();
 }
 if(_root._xmouse>60 and _root._xmouse<125 and myVar==true){
  imgBar.prevFrame();
 }
 if(_root._xmouse>125 and _root._xmouse<475 and myVar==true){
  imgBar.stop();
 }
 if(_root._xmouse>475 and _root._xmouse<540 and myVar==true){
  imgBar.nextFrame();
 }
 if(_root._xmouse>540 and _root._xmouse<570 and myVar==true){
  imgBar.nextFrame();
  imgBar.nextFrame();
 }
 if(_root._xmouse>570 and _root._xmouse<600 and myVar==true){
  imgBar.nextFrame();
  imgBar.nextFrame();
  imgBar.nextFrame();
 }
}

 

本文标签: flash妙网科技翻页电子书微杂志电子书电子杂志手机杂志
本文标题: FLASH中鼠标移动到一定区域停止播放动画代码
本文链接: https://www.mwkj.net/m/?post=267

随机文章推荐 收藏本文

共有3841阅 / 0我要评论
  1. 还没有评论呢,快抢沙发~

发表你的评论吧返回顶部

!评论内容需包含中文

请勾选本项再提交评论