Is it possible to go to a frame earlier in the timeline and then play the timeline in reverse?
Here is my reverse script:
retouchBtn.onRelease=function()
{
_root.onEnterFrame=reverseFrame;
_root.option = "retouching";
}
_root.reverseFrame=function()
{
if (_root._currentframe<152)
{
_root.prevFrame();
} else {
delete _root.onEnterFrame;
}
}