Skip to content

Instantly share code, notes, and snippets.

@mtheoryx
Created August 7, 2012 15:26
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mtheoryx/3286362 to your computer and use it in GitHub Desktop.
Save mtheoryx/3286362 to your computer and use it in GitHub Desktop.
Set Microsoft Lync status with applescript
--go away
tell application "Microsoft Lync"
activate
end tell
tell application "System Events"
tell process "Microsoft Lync"
tell menu bar 1
tell menu bar item "Status"
tell menu "Status"
click menu item "Be Right Back"
end tell
end tell
end tell
end tell
end tell
--go available
tell application "Microsoft Lync"
activate
end tell
tell application "System Events"
tell process "Microsoft Lync"
tell menu bar 1
tell menu bar item "Status"
tell menu "Status"
click menu item "Available"
end tell
end tell
end tell
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment