Recording info about how long an application has been open?

Hi. I would like to set up some kind of log that tells me when I've opened a particular application (Final Cut Pro) and how long (how many minutes/hours) the application has been open for that particular session or that particular day.
Ideally, the log would have the new information appended to the end of it each day; it wouldn't delete/refresh/overwrite itself -- so at the end of, say, six months, I could look at the log and see, Oh, I used Final Cut on Tuesday, April whatever, for 10 hours, and then on Friday, May whatever, for another 12 -- without having to know about any other activity with any other application on my system.
Is there an easy way to do this with OS X 10.4.5? Can Automator do this for me? (Didn't notice an FCP icon in the library of applications Automator can act upon.) Do I need to use AppleScript?
Thanks!
PowerMac G5   Mac OS X (10.4.5)  

Hi, R.G.
You might also want to look into some of these applications.
When looking for new applications, I recommend searching MacUpdate or Version Tracker. The user-submitted reviews accompanying the listings are helpful in sorting the wheat from the chaff.
Good luck!
Dr. Smoke
Author: Troubleshooting Mac® OS X

Similar Messages

  • How can I tell how long a request has been sitting on an execute queue?

    Is it possible to determine (in WL 8.1 and/or 10.3) how long an HTTP request has been sitting on the execute queue before being assigned to a servlet?
    Under heavy load, I'm finding that the caller times out by the time the servlet tries to write the response because the request has been waiting on the execute queue for too long. To prevent doing all the work to process the request, I want to be able to see how long the request has been waiting to determine whether it's worth processing the request.
    Currently I use the getExecuteThreadTotalCount() method in ExecuteQueueRuntimeMBean and assume that if the count is high, the request has probably been waiting for a while, but getting the actual time on the queue would be much better.
    Thanks.

    Further investigation and a bunch of speed tests later, I'm even more puzzled. Between 7 pm and 9pm this evening, download speed has been consistently at 112kb, except for the 1 in 10 occasions where it hits 1.5mb, for 30 or 40 seconds, before dropping back to 112kb.
    Does anyone have any ideas what is going on?
    thanks in advance
    Ben

  • Is there a way to find out how long my child has been playing with my ipad

    Is there a way to find out how long my child has been playing with my ipad???  He has been getting up before me in the morning and in the evening he is super tired and I'm wondering how early he has been getting up????

    No way to see exactly how long the iPad has been used but you may want to consider using parental controls.
    iOS: Understanding Restrictions (parental controls)

  • Timing how long a frame has been active

    I am trying to time how long a frame as been the active
    frame. Once the frame is displayed, if the user doesnt press a
    button to move to another frame after 6 seconds, the movie should
    jump back to the previous frame it was at. I think the setInterval
    function would be correct to use here to time the 6 seconds, but im
    not sure how to clear the interval after. Here is my logic, (i know
    this isnt correctly coded..)
    If a button was pressed before the 6 seconds has elapsed,
    then it would not jump to frame5, i think.. but im not really sure
    if this will work for what i am tryin to do, and if there is a
    simpler way. thanks for any advice

    onEnterFrame does NOT execute once when the frame is entered
    (despite its name). it executes repeatedly (ie, it starts a loop)
    starting when the frame that contains its code is entered and
    continues until the timeline to which it's attached no longer
    exists or a delete onEnterFrame is executed.
    in addition, you should always precede your setInterval()
    statement with a clearInterval(). especially, when your setInterval
    is attached to a frame. it's almost guaranteed that you'll have a
    mess on your hands if you use the code given by madmac, unless you
    add that clearInterval().

  • Working out how long a program has been run for

    i hav a server and on the stats report it makes i wanna show how long its been running for since it started
    i have a start date and time
    and a ill grab the current date and time when i run this method
    but what code would compair them and work out how long the server has actually been running for
    can i do it using these 2 days or do i need another counter thread just counting up in seconds then min then hours then days n so on ?
    Message was edited by:
    russdx

         private final static int SECOND = 1000;
         private final static int MINUTE = SECOND * 60;
         private final static int HOUR = MINUTE * 60;
         private final static int DAY = HOUR * 24;
         public static void main (String[] args)
              long time = System.currentTimeMillis();
              long days = time / DAY;
              time -= days * DAY;
              long hours = time / HOUR;
              time -= hours * HOUR;
              long minutes = time / MINUTE;
              time -= minutes * MINUTE;
              long seconds = time / SECOND;
              System.out.println (days + " days, " + hours + " hours, " + minutes + " minutes, " + seconds + " seconds");
         }Ted.

  • Which view would give info about how long the backup took

    Hello,
    Which view in rman or the target database to tell how long the backup took? Thank you.

    Hi,
    I suggest checking the data dictionary view v$BACKUP_SET ( START_TIME,COMPLETION_TIME,ELAPSED_SECONDS ).
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96536/ch319.htm#1110691
    Regards,
    Vaibhav

  • How can I tell how long my Mac has been on?

    I know there are a couple of widgets that do this, but if I don't have those, how can I tell how long it's been since I last booted my Mac? Seems like, at a minimum, there would be a Unix command that would tell me this.
    Thanks!

    open terminal:
    uptime <enter>
    my uptime:
    21:29 up 2 days, 3:38, 2 users, load averages: 0.09 0.16 0.08
    (clock, uptime, users, load)

  • New update of podcast app, there is no way to see how long your podcast has been on go?

    When listening to a podcast and you want to see how long you have left, there is now no longer an option to see this?
    Your also unable to drag/skip to a part of the podcast easily

    @Christine – try the following ExtendScript (JavaScript):
    if(app.selection.length === 0
        || !app.selection[0].constructor.name === "Cell"
        || !app.selection[0].constructor.name === "Table"){
        exit(0);
    var sel = app.selection[0];
    if(sel.constructor.name === "Cell"){
        var tableRowLength = sel.parent.rows.everyItem().getElements().length;
    if(sel.constructor.name === "Table"){
        alert("All "+sel.rows.everyItem().getElements().length+" rows selected in current table." );
        exit(0);
    var numberOfRowsSelected = sel.rows.length;
    var indexOfSelectedRows = sel.rows.everyItem().index;
    var startRowSel = indexOfSelectedRows[0]+1;
    var endRowSel = indexOfSelectedRows.length+indexOfSelectedRows[0];
    alert(numberOfRowsSelected +" row(s) selected.\r"+startRowSel+" to "+endRowSel+" out of "+tableRowLength+" of current table.");
    You need not select whole rows, just one or a couple of cells.
    Then run the script.
    An alert message is telling you how many rows belong to the cell range you have selected and:
    which rows of the table are selected…
    A typical message would be:
    6 row(s) selected.
    3 to 8 out of 20 of current table.
    The script does some basic checks of the selection.
    If no cell or table is selected, it will just do nothing…
    Uwe
    Message was edited by: Laubender | Some language cosmetics in the alert message

  • About how long should it take to burn slideshow onto a DVD w/ duo core iMac

    I posted this under in the general forum and rec'd no responses. Perhaps I should have started here....
    Q. About how long should I expect it to take my iMac to convert, then Burn an iPhoto slideshow (comprised of 130 338kb pictures) onto a DVD? I've done this twice (from iPhote, going to Share, then clicking "DVD") and each time it has worked perfectly. However, it seems to take about an hour or more to complete. Is this normal/ expected?? Please understand that this is my first Mac and I've never had a PC w/ a DVD burner, so I'm not sure what to expect. ..I tried running a search for the question but came up empty.
    Thanks!

    I am also doing one right now and it is taking awhile.
    The images are very large though, 1 mb each.
    They look great, but the transfer from iPhoto to iDvd is taking forever.
    Is when your system lags?
    I am topped out with 2gigs of ram and 2.0 ghz intell chip.
    iMac CD 20", 2.0 GhZ, 2.0 Gb ram   Mac OS X (10.4.5)  

  • About how long should it take to process a 1:40m movie in iMovie 11?

    about how long should it take to process a 1:40m movie in iMovie 11?

    Hi
    And the free space avail. on the Start-Up (Macintosh HD) also play an important role.
    For interlaced SD-Video Quality (as on old fat TVs) - I never go less than 25Gb free space (per hour Video)
    For HD - about 4 - 5 times more
    If strange Video-Codecs - that might need lot's of conversions to be used - then multiply with 2 - 3 times more and Hope.
    I make the conversion of raw material first outside iMovie to make things easier.
    TO GET IT TO WORK SLIGHTLY FASTER
    • Minimum of 25Gb free space on Start-Up hard disk
    • No other programs running in BackGround e.g. Energy-Saver
    • Don’t let HD spin down or be turned off (in Energy-Save)
    • Move hard disks that are not to be used to Trash - To be disconnected/turned off
    • Goto Spotlight and set the rest of them under Integrity (not to be scanned)
    • Set screen-saver to a folder without any photo - then make an active corner (up right for me) and set pointer to this - turns on screen saver - to show that it has nothing to show
    • No File Vault on - Important
    • NO - TimeMachine - during iMovie/iDVD work either ! IMPORTANT
    • Lot's of icons on DeskTop/Finder also slows down the Mac noticeably
    • Start a new User-Account and log into this and iMovie get's faster too - if a project is in a hurry
    • And let Mac run on Mains - not just on battery
    Yours Bengt W

  • What dictionary to see how long a job has run??

    Hi, all.
    I would like to check how long a job has run.
    dba_scheduler_job_run_details.LOG_DATE - dba_scheduler_job_run_details.ACTUAL_DATE
    = the time a job has run.
    Is this right?
    Thanks and Regards.

    Dear Chandra.
    Thanks for your reply.
    Have a good night.
    Best Regards.

  • "SQlite Version Error The application has been updated, but your version of SQlite is too old and the application cannot run." What is this all about?? Shall I give up on Firefox?

    When I tried to use Firefox this morning I got this message with exclamation marks.
    "SQlite Version Error The application has been updated, but your version of SQlite is too old and the application cannot run."
    What is this all about?? Shall I give up on Firefox?

    Sorry to hear that. I understand your frustration and I hope they send back a better working N78-3.
    Myself, I count myself lucky. Everything works perfectly for me right now...email, bluetooth, maps, gps, 3rd party apps, battery life, 3G, wifi, etc. etc.
    The only issue I've been having is the dreaded reboots but I believe that may have to do with 3rd party apps. I recently uninstalled Google Search app from my N78 and since then it hasn't rebooted or shown any issues. This seems odd at first but makes sense if you think about the fact that the Google Search app loads itself into memory and runs in the background at all times.
    I did this this past Tuesday night and so far no reboots, crashes or any problems. I'm sure I just jinxed myself but I've been using it heavily over the last few days with no issues. Prior to this, it would usually reboot every 2 days. If it doesn't reboot for another few days I'll be happy.
    I would normally not stand for this but I just love the phone and if I got something else it'd probably be the iPhone 3G which has perhaps more software bugs and issues than the N78-3!!
    Best of luck. Here's hoping they release an update soon.

  • The screen is frozen while installing software updates. Say about 2 minutes and it has been more than hour. How can I cancel or do something about it? Is it ok to unplugg it? Please advise.

    The screen is frozen while installing software updates. Say about 2 minutes and it has been more than hour. How can I cancel or do something about it? Is it ok to unplugg it? Please advise.

    Really?
    Is there no other option? No magic key combo that brings up a secret menu?
    My imac just froze during a software update install and I too do not know what to do.

  • Hi. the email application has been removed from my ipad. I don't have back up so how can I get it back?

    Hi. the email application has been removed from my ipad. I don't have back up so how can I get it back?

    It is not possible to remove the Mail app (or any other of the bundled apps) from the iPad. It's probably been moved to another Home screen or inadvertently placed in a folder. If you can't find it, you can reset the Home screens in the General -> Reset preferences.
    Regards.

  • Report: How long the user has not logged into SSHR

    Hi experts,
    I am looking for a report, which showing me, how long the user has not been logged into SSHR?. Because some poeple dosn't work any more in the company, and the list should enable use to deactivate their accounts.
    Thanks in advance
    Mehdi

    The AOL signon capabilities are good and you'll find useful stuff in those links.
    If you're after something quick in SQL try this:
    SELECT last_logon_date, user_name
    FROM fnd_user
    WHERE trunc(last_logon_date) < trunc(sysdate) - 90;
    That will get you everyone who hasn't logged in for 90 days.
    Edited by: Duncan Casemore on Jan 20, 2011 9:26 AM

Maybe you are looking for

  • Tips on avoiding hard coded paths and make a java app platform independent

    HI all, I would like to gather some tips on how to avoid hard coded file paths, which are plenty in the application I work on and which I inherited from previous programmers. Also, when deploying to the production server, my app goes from a Windows p

  • Steps for creation of search help exit for a search help

    Hi, I have created a search help. I need to create a search help exit for this search help. Please let me know how to create a search help exit as well as how to link it to my search help.

  • Safari and firefox and chrome

    can a macbook process using safari and firefox (or chrome) at the same time? Does each compete for IP addresses? Thanks for insight

  • Which subtitle software for me?

    I need to get my video (Full HD when extracted from Blu Ray) separated from the Subtitles. And also need to have the possibility to edit the subtitles (font, color, size, shadow). Which software would you recommend for this manner? I need it to be a

  • Adobe Premiere.exe - Entry Point Not Found

    Hello. I reinstalled Windows 7 on my laptop and afer i installed Adobe Premiere pro CS6 i keep getting this error message when opening the program. Does anyone know how to fix?