Flash AS 制作创意的鼠标经过的网页导航
时间:2016-02-01 07:58:04
收藏:0
阅读:159
主要代码:
复制代码
代码如下:var my_B:Boolean = false;
my_mc.onEnterFrame = function() {
if (!my_B) {
my_mc.prevFrame();
} else {
my_mc.nextFrame();
}
};
my_mc.mc_bg.onEnterFrame = function() {
if (my_mc.mc_bg.hitTest(_root._xmouse, _root._ymouse, 1) == false) {
my_B = false;
my_mc.prevFrame();
}
};
源文件下载http://files.jb51.net/file_images/photoshop/200911/flash_daohang.rar
原文:http://www.jb51.net/flash/actionscript/22197.html
评论(0)