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
tell application "Finder" to set theFolderList to files of folder POSIX file "/path/to/your/folder/" as alias list | |
set theProjectName to "New Project" | |
tell application "Things3" | |
make new project with properties {name:theProjectName} | |
end tell | |
repeat with x in theFolderList | |
set thePath to POSIX path of x |
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
tell application "Papers" | |
activate | |
set theKeywordList to {"New"} | |
set pubList to every publication item | |
repeat with eachPub in pubList | |
set theKeywords to keyword names of eachPub | |
if theKeywords is not "" then | |
if theKeywords is not in theKeywordList then | |
copy theKeywords to end of theKeywordList |
NewerOlder