lmartins Posted March 20, 2013 Share Posted March 20, 2013 Based on a previous extension for Alfred 1, made a quick workflow to add reminders to Fantastical: http://cl.ly/0c071F2h2K41 It allows the full syntax as it is normally used in the app input. Brazy78, liatmgat, alfredappuser and 1 other 4 Link to comment
ctwise Posted March 20, 2013 Share Posted March 20, 2013 Based on a previous extension for Alfred 1, made a quick workflow to add reminders to Fantastical: http://cl.ly/0c071F2h2K41 It allows the full syntax as it is normally used in the app input. If you use this line: parse sentence q add immediately true Then it doesn't bother you with the drop-down. Link to comment
lmartins Posted March 20, 2013 Author Share Posted March 20, 2013 Usually i like to review the settings on the dropdown, but i see the value in your suggestion also. Link to comment
silvine Posted March 29, 2013 Share Posted March 29, 2013 Just what I was looking for, thanks. Link to comment
Paik4Life Posted April 2, 2013 Share Posted April 2, 2013 Thanks, lmartins! ctwise, thanks for your suggestion, I tried it out but am in the same camp as lmartins. I like to be able to review the reminder to make sure it parsed it correctly and to set some options like alerts and such. Good to know for other scripts though. ~Paik Link to comment
jbthree Posted April 24, 2013 Share Posted April 24, 2013 I, too, am in Luis's camp, but I don't the drop down box. Link to comment
dfay Posted February 8, 2014 Share Posted February 8, 2014 (edited) If you use TaskPaper, you may want to substitute the Applescript in this workflow with the one here: http://www.hogbaysoftware.com/wiki/ParseClipboardInFantastical , which converts a TaskPaper @due(YYYY-MM-DD) tag to the text due YYYY-MM-DD which Fantastical will parse as a Reminder. Updated 2015-03-25: Change Fantastical to Fantastical 2 & it works perfectly with F2. Edited March 25, 2015 by dfay Link to comment
jamiedefined Posted October 20, 2014 Share Posted October 20, 2014 Are there instructions for this workflow anywhere? I want to learn how to select which calendar to add an even to. Thanks, Jamie Link to comment
milkosoc Posted February 28, 2015 Share Posted February 28, 2015 Is there any case we get an updated workflow for Fantastical?! Link to comment
dfay Posted March 2, 2015 Share Posted March 2, 2015 (edited) What's to update? This workflow consists of a 3 line Applescript: tell application "Fantastical" parse sentence q end tell All the real work is done in Fantastical. And the parse command is the only Applescript command for Fantastical, so there's no exposed functionality that isn't being taken advantage of by the workflow as it is. Edited March 2, 2015 by dfay Link to comment
Lucas Steinwalker Posted October 5, 2015 Share Posted October 5, 2015 I've modified this to prepend "remind " at the beginning of the string to add a reminder without having to type "remind" on alfred_script(q) set x to "remind " set y to x & q tell application "Fantastical" parse sentence y end tell end alfred_script Thought this might be useful to others. Link to comment
failfred Posted April 27, 2020 Share Posted April 27, 2020 (edited) Any chance to update this for Fantastical 3? Previously this workflow was perfect. Unfortunately with Fantastical 3 it now pops up the fantastical app window every time which largely defeats the purpose (it's slow, has to be manually closed). I only use Alfred as an app launcher and to add calendar items so this kills 50% of its value for me. :,( Edited April 27, 2020 by failfred Link to comment
jrock2004 Posted May 9, 2020 Share Posted May 9, 2020 Here is the script I use and it adds it perfectly for me with version 3 on alfred_script(q) tell application "Fantastical" parse sentence q with add immediately end tell end alfred_script Link to comment
cb112 Posted June 22, 2020 Share Posted June 22, 2020 I added the following script and it keeps crashing Fantastical 3 - has anyone used this successfully? Any need to modify specifically for Fantastical 3? on alfred_script(q) tell application "Fantastical" parse sentence q with add immediately end tell end alfred_script Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now