Fantastical update with new Applescript options

Seems fantastical added some extra integration options :slight_smile:

I did not look into it, but it could be very interesting.

2 Likes

Did some testing and scripts below seem to work:

Get Name

tell application "Fantastical"
	
	set theItems to selected calendar items
	
	set theFirstItem to item 1 of theItems
	
	return title of theFirstItem
	
end tell

Get Address

tell application "Fantastical"
	
	set theItems to selected calendar items
	
	set theFirstItem to item 1 of theItems
	
	return showURL of theFirstItem
	
end tell

Thanks for letting us know, @wernervp . We had a back channel communication in June about this with the good folks at Flexibits, and have a script ready to publish, which we will do next, and also include in Hook 3.2.

2 Likes

I’ve announced the integration here:
Version 172 of Hook software integration is available, Supports Fantastical by Flexibits - Releases - Hook Productivity Forum

I had a feeling this was coming :slight_smile:

Thanks for the update!

1 Like