-1

Mac OS X で Outlook 2011 を使用しています。メッセージの作成にかかった時間を計算する方法を探しています。

ありがとう!

4

1 に答える 1

0

分数 (秒数ではなく) だけを知りたい場合は、Ateaを使用できます。メニューバーにある超シンプルなタイムトラッカーです。

秒までの時間が必要な場合、これはやや醜いですが、効果的な Applescript の 1 回使用のタイムトラッカーです。

property logfile : "Path:To:log.txt"

set startTime to current date

--Don't let the dialog timeout. Give it an entire day to finish
with timeout of 86400 seconds
    display dialog "Click 'Finished' when your email is complete." buttons {"Finished"} default button "Finished"
end timeout

set elapsedTime to (current date) - startTime

--Opening and immediately closing the file just makes sure
--the file will exist when you try to write to it.
open for access file logfile with write permission
close access file logfile
write ((elapsedTime as string) & return) to file logfile starting at eof
于 2013-09-11T19:52:27.853 に答える