prova così:

codice:
onClipEvent (load) {
     _visible = 0;
     n_1 = n_4 = 0;
     vel = 22;
     txt = n_1;
}
onClipEvent (enterFrame) {
     if (parti) {
          _visible = true;
          n_1 = Number(n_4);
          diff = ((n_2-n_1)/vel);
          n_3 += diff;
          n_4 = int(n_3);
          txt = n_4+" th";
     }
}
prova così