Ipotizzo:


codice:
maxID=10
tot=animaz._totalframes

ID=1

animaz.testo.text=mioarray[ID]

animaz.onEnterFrame=function(){
       
       if(this._currentframe<=tot){
               // animazione
       }else{
               if(ID<=maxID){
                      ID++
                      this.testo.text=mioarray[ID]
                      this.gotoAndPlay(1)
               }else{delete this.onEnterFrame}
        }
}