タイマーとか時間の取り出しの場合は、current dateを使いますが、
通常では、date “2017年06月28日水曜日 22:57:05”となりますので、
thruを使って、最後から何番目とかの数字を取り出しますが、
ここで、時間、分、秒を単独で取り出したほうが楽だということがわかりました。
で、月、日、時間、分、秒をつなげて現在時間(current date)と同じになったら
アプリの作動ができれば、面白くなります。
参照先:http://force4u.cocolog-nifty.com/skywalker/2010/07/applescript-2f0.html
set AA to current date set WW to the weekday of (current date) --Wednesday set WW_2 to the weekday of (current date) as number --4 set nowYear to my year of (current date) set nowMonthNo to "0" & (the month of (current date) as number) set nowMonthNo_2 to text -1 thru -2 of nowMonthNo --ひとけた月処理 set nowDay to "0" & the day of (current date) set nowDay_2 to text -1 thru -2 of nowDay --ひとけた日処理 set nowHours to the hours of (current date) set nowMinutes to the minutes of (current date) set nowSecond to the seconds of (current date) --時間分秒も以下同じ。
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー