Jump to content

bongaards

Member
  • Posts

    1
  • Joined

  • Last visited

Posts posted by bongaards

  1. I'm using Slackfred and Things by Cultured Code. I want to publish a selected task with tag from Things into Slack after a shortcode. (cmd+shift+s) How to do this with AppleScript and Slackfred?

     

    1. I select a task in Things
    2. Shortcode (cmd+shift+s) will trigger Slackfred with custom code
    3. The task with tag(s) are published in Slack

     

    Someone made this code for me, but he doesn't have Alfred Powerpack, so he can't make workflows.

    tell application "Things"
    
    set selectedToDo to the first selected to do
    
    tell selectedToDo
    set theToDoTitle to the name
    set theToDoTags to name of tags
    end tell
    
    end tell
    
    return {theToDoTitle, theToDoTags}

    I have no experience as a developer. How to do this?

×
×
  • Create New...