flash 鼠标移动到影片剪辑时显示? 10
展开全部
other_mc.visible=false
pic_mc.addEventListener(MouseEvent.MOUSE_OVER,showother)
pic_mc.addEventListener(MouseEvent.MOUSE_OUT,hideother)
function showother(e:MouseEvent){
other_mc.visible=true
}
function hideother(e:MouseEvent){
other_mc.visible=false
}
pic_mc.addEventListener(MouseEvent.MOUSE_OVER,showother)
pic_mc.addEventListener(MouseEvent.MOUSE_OUT,hideother)
function showother(e:MouseEvent){
other_mc.visible=true
}
function hideother(e:MouseEvent){
other_mc.visible=false
}
更多追问追答
追问
不明白。。。。可以讲讲怎么用吗?
追答
舞台上图片转换为元件,实例名:pic_mc
想要控制显示与否的实例名:other_mc
把代码放到帧动作上
展开全部
在zzlasp的答案上面加上第一句
import flash.events.*;
other_mc.visible=false
pic_mc.addEventListener(MouseEvent.MOUSE_OVER,showother)
pic_mc.addEventListener(MouseEvent.MOUSE_OUT,hideother)
function showother(e:MouseEvent){
other_mc.visible=true
}
function hideother(e:MouseEvent){
other_mc.visible=false
}
import flash.events.*;
other_mc.visible=false
pic_mc.addEventListener(MouseEvent.MOUSE_OVER,showother)
pic_mc.addEventListener(MouseEvent.MOUSE_OUT,hideother)
function showother(e:MouseEvent){
other_mc.visible=true
}
function hideother(e:MouseEvent){
other_mc.visible=false
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用flash的鼠标触发代码和动作都可以实现
追问
有个MOUSE OVER 的事件 不会用
追答
看看教程吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个简单,直接贴代码:(假设你想移动的影片为
yp_mc)
yp_mc.usehandcursor
=
false;//鼠标形状为指针,true
鼠标为手形
yp_mc.onpress=function()
{
this.startdrag();
}
yp_mc.onrelease=function()
{
this.stopdrag();
}
yp_mc)
yp_mc.usehandcursor
=
false;//鼠标形状为指针,true
鼠标为手形
yp_mc.onpress=function()
{
this.startdrag();
}
yp_mc.onrelease=function()
{
this.stopdrag();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询