哪位帮我看看这段FLASH代码的意思?

来源:百度知道 编辑:UC知道 时间:2024/05/30 08:15:42
on (rollOver)
{
if (m != 3)
{
this["hua"+k].gotoAndPlay(21);
m = 3;
this["hua" + m]._visible = 1;
this["hua"+m].gotoAndPlay(2);
this.hua6b._x = 684.900000;
this.hua6b._y = 410;
} // end if
}
on (release)
{
getURL("registraion/cregistraion.htm");
}

on (rollOver)
{
this.hua32.gotoAndPlay(2);
}
on (rollOut)
{
this.hua32.gotoAndPlay(11);
}
on (release)
{
getURL("registraion/cregistraion.htm");
}

if (x == y)
{
gotoAndPlay(3);
}
else
{
gotoAndPlay(1);
} // end if

on (rollOver) 鼠标经过
{
if (m != 3) 如果m不等于3
{
this["hua"+k].gotoAndPlay(21); this.["hua"+k]从第21帧播放
m = 3; 如果m=3
this["hua" + m]._visible = 1; this.["hua"+m]可见
this["hua"+m].gotoAndPlay(2); this.["hua"+m]从第2帧播放
this.hua6b._x = 684.900000; this.hua6b的x坐标为684.9
this.hua6b._y = 410; this.hua6b的y坐标为410
} // end if 条件结束 (这句代码的格式不对)
}
on (release) 鼠标释放
{
getURL("registraion/cregistraion.htm"); 打开registraion/cregistraion.htm这个网页 (你写的网址估计不对)
}

on (rollOver) 鼠标经过
{
this.hua32.gotoAndPlay(2); this.hua32从第2帧播放
}
on (rollOut) 鼠标离开
{
this.hua32.gotoAndPlay(11); this.hua32从第11帧播放
}
on (release) 鼠标释放
{
getURL("regi