Первое, что в голову пришло:

Код:
mc.onPress=dosomething;
var __koef:Number = 0.2;
function dosomething(){
mc.onEnterFrame=rotate;
}
function rotate(){
__koef-=0.01;
this._rotation+=(90*__koef);
if(__koef<=0){
def();
}
}
function def(){
mc.onEnterFrame=null;
__koef=0.2;
}