Вместо перехода на каой-то кадр с анимацией сделай обратное движение, т.е. не так:

Код:
onRollOut = function ():Void
{
this.gotoAndPlay ("rollOutAnim");
}
а так:

Код:
onRollOut = function ():Void
{
this.onEnterFrame = function ()
{
this.gotoAndStop (_currentframe - 1);
};
onEnterFrame ();
}