Flash simple timer


/ Published in: ActionScript
Save to your folder(s)

Perfect for banners


Copy this code and paste it in your HTML
  1. var time = 1000;
  2. function next() {
  3. _parent.nextFrame();
  4. clearInterval(timeOut);
  5.  
  6. }
  7. timeOut = setInterval(next, time);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.