执行时间没有时间表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了执行时间没有时间表相关的知识,希望对你有一定的参考价值。
function time(func, delay) { clearInterval(waiter); waiter = setInterval(func, delay); } // Sequence usage: // start(); // // function start() { // trace("This is start 1"); // time(finish, 2000); // } // // function finish() { // time(); // trace("This is the end. The setInterval is cleared."); // } // Simple go to next frame after time duration: // time(goNextFrame, 1000); // function goNextFrame() { // time(); // _root.nextFrame(); // }
以上是关于执行时间没有时间表的主要内容,如果未能解决你的问题,请参考以下文章