He to reset getTime

How do I reset the get time action. When I play my game it just keeps adding up. I want the time to rest if the use chosses to play again. Also How do u rest a whol SWF. Is there a way

function fStartTimer(){
_root.nStart = getTimer();
}
function fGetElapsedTime(){
return (getTimer()-_root.nStart);
}

to reset the clock:
fStartTimer();

to retrieve the elapsed time since the last reset:
fGetElapsedTime();

have a nice day,
jeremy

I’ll try that out. Thanks:)