
Get Elapsed Seconds
A routine to calculate the amount of seconds from a given start date/time.
1 2 3 4 5 6 |
on GetElapsedSeconds(StartDate) set endTime to current date set ElapsedSeconds to endTime - StartDate return (ElapsedSeconds) end GetElapsedSeconds |