本页面由
Flash 保存计划
从 Internet Archive 存档还原
· 快照 2004-12-09
· 原址 http://www2.flash8.net/teach/2161.htm
← Flash 保存计划
闪吧首页
教材区
Flash教学
Action应用
Flash中如何用AS实现帧反播
作者:
starchenzh
来源:
闪吧
时间: 2004年10月18 类型: 原创
收藏
发送
评论
<%=votevote%>
打印
字体选择:
大
中
小
用AS实现帧反向播入
以下是源码:
MovieClip.prototype.backward = function() {
this.gotoAndStop(this._totalframes);
this.onEnterFrame = function() {
this.gotoAndStop(this._currentframe-1);
if (this._currentframe == 1) {
delete this.onEnterFrame;
}
};
};
责任编辑:uufeng
上一篇:
用ASP.net+SQL Server动态生成xml数据
下一篇:
函数封装-简述
没有相关教材