A colleague asked if anyone knew how to migrate his vast collection of Mac Stickies notes to the cloud. I suggested he get an Evernote account while I did some quick research. I didn't find any existing solution, so and I came up with an Automator workflow that copies the selected plain text into a new Evernote note.
Launch Automator, and create a new Service. Set "Service receives selected" to TEXT in "any application". Drag the Run Applescript action into the main part of the window. Paste this code in that window:
on run {input}
tell application "Evernote" to activate
synchronize
repeat with selectedText in input
tell application "Evernote"
if (not (notebook named "Stickies" exists)) then
make notebook with properties {name:"Stickies"}
end if
try
create note with text selectedText notebook "Stickies"
synchronize
end try
end tell
end repeat
end run
Mac OS X Hints
http://hints.macworld.com/article.php?story=20130611114324237