佳礼资讯网

 找回密码
 注册

ADVERTISEMENT

查看: 1027|回复: 1

帮我一个忙。。。(急)

[复制链接]
发表于 5-4-2006 06:14 PM | 显示全部楼层 |阅读模式
我要在我的VIDEO里加个Forward 或 Rewind的BUTTON.我能给到下个FRAME,但是我要它每按一下能够跳10个FRAME,该如何呢???是不是要加个GLOBAL 的 VARIABLE的???

on (press)  {              
    prevFrame(0) ;
}                                    ----->这个是跳一个FRAME的AC.
回复

使用道具 举报


ADVERTISEMENT

发表于 6-4-2006 03:26 PM | 显示全部楼层
MovieClip.prototype.Foward = function(speed) {
        this.onEnterFrame = function() {
                if((this._currentframe+speed) < this._totalframes) {
                        this.gotoAndStop(this._currentframe+speed);
                } else {
                        this.gotoAndStop(this._totalframes);
                        delete this.onEnterFrame;
                }
        }
}
MovieClip.prototype.Rewind = function(speed) {
        this.onEnterFrame = function() {
                if((this._currentframe-speed) > 1) {
                        this.gotoAndStop(this._currentframe-speed);
                } else {
                        this.gotoAndPlay(1);
                        delete this.onEnterFrame;
                }
        }
}
fowardBtn.onRelease = function() {
        this._parent.Foward(10);
}
rewindBtn.onRelease = function() {
        this._parent.Rewind(10);
}


http://xenz.yiima.com.tw/sample/controller.swf

[ 本帖最后由 super-tomato 于 6-4-2006 03:40 PM 编辑 ]
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

 

ADVERTISEMENT



ADVERTISEMENT



ADVERTISEMENT

ADVERTISEMENT


版权所有 © 1996-2023 Cari Internet Sdn Bhd (483575-W)|IPSERVERONE 提供云主机|广告刊登|关于我们|私隐权|免控|投诉|联络|脸书|佳礼资讯网

GMT+8, 13-11-2024 08:36 PM , Processed in 0.118710 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表