Skip to content

Latest commit

 

History

History
66 lines (51 loc) · 700 Bytes

applescript.md

File metadata and controls

66 lines (51 loc) · 700 Bytes
title updated layout category prism_languages
AppleScript
2018-12-06
2017/sheet
macOS
applescript

Running

osascript -e "..."
display notification "X" with title "Y"

Comments

-- This is a single line comment
# This is another single line comment
(*
This is
a multi
line comment
*)

Say

-- default voice
say "Hi I am a Mac"
-- specified voice
say "Hi I am a Mac" using "Zarvox"

Beep

-- beep once
beep
-- beep 10 times
beep 10

Delay

-- delay for 5 seconds
delay 5