どういうものか
実行するとスティッキーズを起動し、
もし付箋がなければ新しく右上に作成するだけの簡単なAppleScriptです。
コード
-- スティッキーズアプリケーションを起動
tell application "Stickies"
activate
end tell
tell application "System Events" to tell process "Stickies"
-- 前面に出す
set frontmost to true
-- stickyが一つもない時の処理
if (count of windows) = 0 then
-- メニューを叩いて新しいstickyを作成する
tell menu item 1 of menu 3 of menu bar 1 to click
-- 画面左上に移動する
set size of window 1 to {350, 220}
set position of window 1 to {50, 50}
end if
end tell