You are currently looking at an older section of the wincent.dev website.
Please check the new version of the site at https://wincent.dev/ for updated content.

wincent Synergy Advance: total audio control

Synergy Advance help: AppleScript

Synergy Advance features AppleScript support (the ability to control Synergy Advance using AppleScript).

Finding out whether the Global Menu is in the menu bar:

tell application "Synergy Advance"
  get show global menu
end tell

Adding the Global Menu to the menu bar:

tell application "Synergy Advance"
  set show global menu to true
end tell

Removing the Global Menu from the menu bar:

tell application "Synergy Advance"
  set show global menu to false
end tell