/ Published in: ActionScript
URL: http://minus.ws/note/?p=94
A single function that performs "stop & go" slideshow actions called stopngo(). Works in conjuction with the movieclip prototype version of time().
Expand |
Embed | Plain Text
MovieClip.prototype.stopngo = function(delay) { this.stop(); this.time(commence, delay, this); } MovieClip.prototype.commence = function(clip) { clip.time(); clip.play(); }
You need to login to post a comment.
