Created
April 1, 2017 17:46
-
-
Save freklov/83cc1135549a98741a621b0dbff090eb to your computer and use it in GitHub Desktop.
Applescript for Things: Copy selected to dos to clipboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # things-todos_to_clipboard frekolv 04/01/2017 | |
| # Copy selected to dos into clipboard | |
| set itemsList to {} | |
| tell application "Things" | |
| repeat with todoItem in selected to dos | |
| set textTodo to name of todoItem | |
| copy textTodo & return to end of the itemsList | |
| set the clipboard to textTodo | |
| end repeat | |
| set the clipboard to itemsList as text | |
| end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment