-
How to Automate Uptime Display in StatusPage.io via Synthetic Monitors in Datadog in 4 steps
Figuring out how to get an automated uptime display in StatusPage.io from the data that exists in Datadog.
-
Applescripts to Mute or Unmute Lync
In preparation for hooking up Lync muting and unmuting to separate hotkeys, I wanted to make sure that my scripts no longer toggled the mute button, but only muted or unmuted. For that to work, I needed to retrieve the current state of the checkbox. set theCheckbox to checkbox 5 of splitter group 1 of…
-
Toggling the mute button in Microsoft Lync for Mac via Applescript
Through liberal use of the dictionary for Microsoft Lync, the Accessibility Inspector, and a few web links, I’ve come up with this script which toggles the mute button in Lync for Mac. tell application “Microsoft Lync” activate end tell tell application “System Events” tell process “Microsoft Lync” repeat with aWindow in (get every window) set…