tanto per dire i clip li puoi trattare come bottoni

ad esempio se crei un clip con

nel primo frame la grafica del bottone standard
nel secondo frame la grafica del roll-over
nel terzo frame la grafica del premuto

se in libreria è lincato com std_button


codice:
MovieClip.prototype.gest_button=function(){
          this.gotoAndStop(1)


          this.onRollOver=function(){
               this.gotoAndStop(2)
          }

          this.onRollOut=function(){
               this.gotoAndStop(1)
          }

          this.onPress=function(){
               this.gotoAndStop(3)
          }
}

this.attachMovie("std_button", "goHome", 1)
goHome.gest_button()