- inserisci il pulsante in un movieclip
- al pulsante associa:

on(rollOver){
this.end = 26;
}

- al movieclip associa:

codice:
onClipEvent(load){
	end = this._x
	ine = 1.5;
	acc = 1.8;
}
onClipEvent(enterFrame){
	step = (step + (end - this._x)/acc)/ine;
	this._x += step;
}