[搜集]flash自动定时跳转脚本

      技术研讨 2009-11-22 13:17:00

setTimeout(function(){nextFrame()},5000);

function goto() {
   nextFrame();
}
setInterval(goto, 5000);


在flash的帧上写:
var btime = getTimer();   //开始计时点;
var outime = 5000;  //时间;
this.onEnterFrame = function() {
    ntime = getTimer();  //即时计时;
    if (ntime-btime>outime) {
      this.play();
      delete this.onEnterFrame;
    } else {
       ntime = getTimer();  //更新即时计时;
       trace(btime);
    }
};

 

标签集:TAGS:
回复Comments() 点击Count()
喜欢就顶一下

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}