Skip to content

Instantly share code, notes, and snippets.

@dpsk
Created December 28, 2012 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpsk/4396712 to your computer and use it in GitHub Desktop.
Save dpsk/4396712 to your computer and use it in GitHub Desktop.
Wunderlist2 remove local database, so old extensions don't work anymore. Here is the one that will work with Wunderlist2.
on alfred_script(q)
set the clipboard to q
tell application "System Events"
tell application "Wunderlist" to activate
tell process "Wunderlist"
click menu item "Add New Item" of menu 1 of menu bar item "File" of menu bar 1
end tell
end tell
tell application "System Events"
keystroke "v" using {command down} --Command-C
keystroke return
end tell
end alfred_script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment