AppleScript to add a Text selection as a new Reminder to Wunderlist
on run {input, parameters} | |
-- This code comes from http://raduner.ch/blog/ | |
-- To be used with an Automator Service | |
-- ------------------------------------------------ | |
tell application "System Events" | |
keystroke "c" using {command down} | |
end tell | |
set inputText to the clipboard as Unicode text | |
tell application "Wunderlist" | |
activate | |
tell application "System Events" | |
tell process "Wunderlist" | |
keystroke "i" using {command down, shift down} | |
keystroke "v" using {command down} | |
keystroke (ASCII character 3) | |
end tell | |
end tell | |
end tell | |
return input | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Updated to be compatible with latest Version of Wunderlist, as pointed out by Mark in the comment here:
http://raduner.ch/blog/automator-service-to-add-task-to-wunderlist/