Skip to content

Instantly share code, notes, and snippets.

@ttscoff
Created January 20, 2014 02:38
Show Gist options
  • Save ttscoff/8514026 to your computer and use it in GitHub Desktop.
Save ttscoff/8514026 to your computer and use it in GitHub Desktop.
Quick AppleScript for opening the selected [Together 3](http://reinventedsoftware.com/together/) note(s) in [Marked.app](http://marked2app.com)
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
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment