TimeSpan


Version: 1.0 Sign up to be notified by email when a new version of this script is posted
TimeSpan is a “Punch Clock” style time tracker. Originally built as a way to keep track of my own hours and pay when I was a freelancer. I have now modified it and am now making it available to the AE community. I hope you find it a useful tool.
Features:
- Exports a .TXT (tab delimited) file to the folder of your choice.
- Can log by Client Name or Project Name.
- Logs your clock in time, clock out time, total hours, hourly pay rate and total pay
- Can log multiple entries per document.
- Reset button to clear accidental start time.
NOTE: As I always state in my manuals, computers can act up from time to time and if they crash, there is nothing I can do about that, so always pay attention to your pay and hours separately from this script and don’t make this script your only option to track your time and pay.
- Main UI
- Options Window
- Sample TimeSheet Document
Version History
- 1.0 Initial release 07/2010











I’m amazed. Thanks, really, you just broke a paradigm I had.
Unluckily for me, I don’t have a credit card
It’s not the end of the world. Even though donations people make for my scripts are VERY much appreciated this script does fall in the “Name Your Own Price” category, so you can still grab the script if you really want it.
Hey that’s cool ! How did you manage to get the time in Javascript ? I thought all the Time functions wasn’t available ?
I tried to use it for an in-house tool but couldn’t manage to make it work.
You assign the “new Date” function to a variable then use getHours, getMinutes and getSeconds functions for the rest. If you want a 12 hour clock you have to use an if/else to correct the 24 hour number you get from the getHours function.