第7层第1帆代码this.stop();
if(_root.eventNum !=1)
{
this.gotoAndStop("more");
}
else
{
this.gotoAndStop("single");
}// end else if
第7层第10帆代码
this.stop();
this.btnup.onRollOver=function()
{
moveup=true;
};
this.btnup.onRollOut=this.btnup.onDragOut=function()
{
moveup=false;
};
this.btnup.onRelease=function()
{
_root.loadChange(_root.mCode);
};
this.arrowup.onEterFrame=function()
{
if(moveup)
{
this.nextFrame();
}
else
{
this.prevFrame();
}// end else if
};
this.btndown.onRollOver=function()
{
movedown=true;
};
this.btndown.onRollOut=this.btndown.onDragOut=function()
{
movedown=false;
};
this.btndown.onRelease=function()
{
_root.loadChange2(_root.mCode);
};
this.arrowdown.onEnterFrame=function()
{
if(movedown)
{
this.nextFrame();
}
else
{
this.prevFrame();
} // end else if
};
这上面哪写错了 为什么我的按钮图层会在播放的时候消失掉