프레임 제어 함수

from Scrap/ETC 2006/06/03 00:49
function moveFrame(num) {
this.onEnterFrame = function() {
if (num>this._currentframe) {
  this.nextFrame();
} else if (num<this._currentframe) {
  this.prevFrame();
} else {
  delete this.onEnterFrame;
}
};
}