最近使い始めて便利だと思ったscript達です。
私はgestrと言うアプリで主にscriptを利用しています。
http://mhuusko5.com/#gestr
とても便利なのでぜひ使ってみて下さい。
safariで新しいwindowを開く
tell application "Safari" to activate
tell application "System Events"
keystroke "n" using {command down}
end tell
safariで一番手前のwindowのURLをクリップボードにコピー
tell application "Safari"
set pageURI to get URL of current tab of window 1
set the clipboard to pageURI
end tell
macの音量をミュートにする
set volume with output muted
get volume settings
ミュート解除
set volume without output muted
get volume settings
デスクトップに新しいファイルを作る
tell application "Finder"
make new folder at desktop
end tell
現在のwindowやtabを閉じる
tell application ((path to frontmost application) as Unicode text) to activate
tell application "System Events" to keystroke "w" using command down
現在のapplicationを終了する
tell application ((path to frontmost application) as Unicode text) to activate
tell application "System Events" to keystroke "q" using command down