Jump to content

ebiansyah1402

Member
  • Posts

    3
  • Joined

  • Last visited

ebiansyah1402's Achievements

Helping Hand

Helping Hand (3/5)

0

Reputation

  1. Thank you for the direction guys. So, the conclusion are: - Alfred does't have native chaining support yet. - But we can manipulate string as needed Correct? Anyway, this what I came up with set input to "{query}" set AppleScript's text item delimiters to {"@"} set delimitedList to every text item of someText set todoName to (get item 1 of delimitedList) set listName to (get item 2 of delimitedList) tell application "Reminders" set selectedList to list listName tell selectedList make new reminder with properties {name:todoName} end tell end tell Again, thank you guys.
  2. I want to create reminders item. First keyword is name of the list, and second keyword is an item name. Something like this: set selectedList to "" tell application "Reminders" set selectedList to list "{first_input}" tell selectedList make new reminder with properties {name: {second_input}} end tell end tell How I do that?
  3. Hi guys. I'm new to this whole workflow thing. I'm trying to create a workflow that create new jekyll post. Currently it look like this: - terminal command will build and watch jekyll directory. - bash script will create markdown file bassed on user input and open the markdown editor. - applescript will open new chrome tab to local server. my question would be: - is there a way to run jekyll watch via script instead of terminal command? - is there a way to run applescript as an output. But delay for a few seconds? Thank you.
×
×
  • Create New...