just make it a movie clip, and inside ti have there be up, over, and down frames. Also, add a layer above (still inside MC) and use a 0% alpha fill and make that be 'hit'...make sure this is over every frame =o! Oh, and make the first frame be up, second over, and third down.
Next, add this:
on (rollOver){
this.gotoAndStop(2)
}
on (rollOut, dragOut){
this.gotoAndStop(1)
}
on (press, dragOver){
this.gotoAndStop(3)
}
onClipEvent(enterFrame){
if (this._currentframe == 1){
if (this._alpha>50){
this._alpha--
}
} else if (this._currentframe > 1){
if (this._alpha < 100){
this._alpha ++
}
}
Try that...I just typed it here, so you may need to fix a thing or two in syntax....and use auto format =]!