AppleScript名:asoc_現在のLocateのカレンダーの最初の曜日を取得する v2 |
use AppleScript version "2.4" use scripting additions use framework "Foundation" use bPlus : script "BridgePlus" –https://www.macosxautomation.com/applescript/apps/BridgePlus.htmkl set aCalendar to current application’s NSCalendar’s currentCalendar() set aFirstDay to (aCalendar’s firstWeekday) set c to (current application’s SMSForder’s fordIn:aFirstDay) as integer –> 1 (Sunday Start Calendar) –フランス、香港は月曜日がカレンダーの先頭に来るため結果が異なる –> 2 (Monday Start Calendar) |
More from my site
(Visited 73 times, 1 visits today)
Keynoteの最前面のドキュメントの現在のスライドに指定月の日曜日はじまりカレンダーを表で作成 – AppleScriptの穴 says:
[…] 世の中のカレンダーは日曜日はじまりだけではないので、月曜日はじまりなど、その国、その現場ごとのルールに合わせて変更することが重要です。曜日名についても、実行中のユーザ […]