2024年5月3日发(作者:)
Flash按钮代码大全
1、转下一帧并继续播放
on (release)
{
play();
}
2、转第三帧并播放
on (release)
{
gotoAndPlay(03);
stopAllSounds();
}
3、全屏播放
fscommand("fullscreen", "true");
4、退出
on (release)
{
if (substring(_root._url, 8, 1) == "/")
{
fscommand("quit");
}
else
{
getURL("javascript:()");
} // end if
}


发布评论