Jump to content

oktourist

Member
  • Posts

    4
  • Joined

  • Last visited

Everything posted by oktourist

  1. Solved it, if anyone else using Things 3 and Alfred who would want to use this AppleScript! on run set theQuery to "{query}" set _titles to "" tell application "Things3" repeat with toDo in to dos of project "Kemi 2" set _titles to _titles & (name of toDo as text) & "\n" end repeat end tell return _titles return theQuery end run Thanks @deanishe for the help!
  2. Hey! Complete beginner here. Been using Alfred for quite some time but just now starting to get into the more advanced workflows. Basically what I'd like to accomplish is to retrieve all the tasks from a specific project in Things 3 and have Random Utility randomly select one of the tasks. So far, I've found an AppleScript to retrieve the to-dos from a specific project in Things 3, but I can't seen to get any further. tell application "Things3" repeat with toDo in to dos of project "Things" --- do something with each to do using toDo variable end repeat end tell What I'd like to do next is output the retrieved to-dos so that Random Utility can randomly select one of the tasks. Any help is appreciated!
×
×
  • Create New...