prevFrame() - AS3

Hi,

how can i work this with AS3 ?

this.onEnterFrame = function(){
if(rewind == true){ prevFrame(); }
}

this.onRollOver = function(){ rewind = false; play(); }
this.onRollOut = function(){ rewind = true; }

what i´ve do at least

import flash.events.MouseEvent;

ban.addEventListener(MouseEvent.MOUSE_OVER, Over);

function Over(MouseEvent):void{
play();
}

thanks