Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cdwilson/9298008 to your computer and use it in GitHub Desktop.
Save cdwilson/9298008 to your computer and use it in GitHub Desktop.
# Adapted from http://brettterpstra.com/2014/01/20/open-together-notes-in-marked/
# Save as ~/Library/Scripts/Applications/Together 3/Open Note in Marked.applescript
tell application "Together 3"
set _sel to selected items
repeat with _note in _sel
set _file to original filename of _note
tell application "Marked" to open POSIX path of _file
tell application "Marked" to activate
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment