Backspace = rewind

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

stop(); 
rewind = false;

this would be on the places I want it to stop.

I’m trying to work something out like this. This would be in the root playline.

Can’t quite figure out what’s wrong something with the onKeyDown doesn’t work.