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