prova questo, esegue rotazione e poi si ferma!
usa istanza della tua mc "mc"

codice:
function spinDial(speed) {
   this.rot = 0;
   mc.onEnterFrame = function() {
      this.rot += Math.floor(speed);
      if (this.rot>=360) {
         this.rot = 360;
         delete this.onEnterFrame;
      }
      this._rotation = this.rot;
   };
}
spinDial(10);