flash中hitTest检测鼠标是否经过MC


 

hitTes.rar
检测鼠标是否经过MC,一般的方法可用鼠标滑过滑出做:
MC.onRollOver = function() { 
this.stop(); 

MC.onRollOut =function() { 
this.play(); 
} 但当顶层有一个与舞台的隐形按钮(通常做banner条时会用到)时,上面的代码便无效了。解决方法:用hitTes检测鼠标是否经过MC。
1.在舞台随便画个图形,转换为影片剪辑mc;
2.画一个1*1像素大小的方形,并把它的颜色值设为alpha=0。同样把它转换为影片剪辑:mc_mouse。(就是做一个透明的一像素的影片剪辑)
3.在mc_mouse上加动作:
onClipEvent (load) {
startDrag("", true);//以mc_mouse注册点为中心拖动。
}
onClipEvent (mouseMove) {
updateAfterEvent();//刷新舞台以使光标的移动看起来顺畅。且在(mouseMove)做参数才有效。
if (this.hitTest(_parent.mc)) {//如果my_mc与mc碰撞
_parent.mc.tt="yes"//做什么什么……
_parent.mc.stop();
} else {//否则
_parent.my_mc.play();//做什么什么……
_parent.mc.tt="no"
}
}通过移动看不见的mc_mouse,来判断它是否经过mc,也就等于检测鼠标是否经过MC了。
这样就可以写:鼠标经过MC时,做什么… ;鼠标是离开过MC时,做什么…,而不受到其它元件的影响了。
具体效果和源文件请见附件。
第一次写教程,写得不好请大家多多指教!支持!
希望和大家交流网页制作技术,本人QQ:81038266 
本文转自:http://www.5uflash.com/flashjiaocheng/Flashyingyongkaifa/304.html

你可能感兴趣的:(html,.net,qq,Flash)