Play on MouseOver, Play in Reverse on MouseOut?

So i’ve made a movie clip named MTF_Holder I’ve made it play on MouseOver and then stop at the end, but i want it to play the movie clip in reverse on Mouse_Out How would i do that?

the code ive used so far is …

stop();

import flash.events.MouseEvent;


MTF_Holder.stop();


MTF_Holder.addEventListener(MouseEvent.MOUSE_OVER, MTF_HolderOver);
MTF_Holder.addEventListener(MouseEvent.MOUSE_OUT, MTF_HolderOut);


function MTF_HolderOver(e:MouseEvent):void{
MTF_Holder.play();
}


function MTF_HolderOut(e:MouseEvent):void{
MTF_Holder.gotoAndStop(1);
}

As you can see at the moment when i take the mouse away the movie clip goes back to frame 1 but i want it to show the animation in reverse to get there.

can anyone help?

Thanks in advance

I’ve removed the part of the code that made it go back to frame one now so ignore that bit