Hi
trying to use this excellent workflow with Alfred. I want to create an event from a natural language calendar description copied from some text. The reason to use Alfred is that I want to be able to change potentially the clipboard contents before executing Alfred on this.
Here is my extension snippet:
#popclip
---
name: Alfred
identifier: com.pilotmoon.popclip.extension.alfred
description: Activate Alfred with the selected text.
popclip version: 4151
language: applescript 2.8
icon: bowler.png
app:
name: Alfred
link: https://www.alfredapp.com
bundleIdentifier: com.runningwithcrayons.Alfred
checkInstalled: true
applescript: |
tell application "System Events"
keystroke "c" using {command down}
delay 0.2
end tell
set theText to the clipboard
set theCommand to "CCN"
tell application "System Events"
keystroke space using {command down}
delay 0.1
keystroke theCommand
keystroke "v" using {command down}
end tell
I get the message: “Specify language or interpreter” when trying to install the script. What am I doing wrong?