Skip to content

Instantly share code, notes, and snippets.

@jasonian
Created April 18, 2013 07:49
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 jasonian/5410960 to your computer and use it in GitHub Desktop.
Save jasonian/5410960 to your computer and use it in GitHub Desktop.
Copy notes from VoodooPad app to Evernote. No error checking, written for a one-time import. Worked perfectly for my needs.
tell application "VoodooPad"
tell document 1
repeat with thisPage from 1 to number of items in pages
set theName to display name of page thisPage
set creationDate to created of page thisPage
set theText to text of page thisPage
tell application "Evernote"
create note with text theText title theName notebook "VoodooPad Imported Notes" tags "imported_from_VoodooPad" created creationDate
end tell
end repeat
end tell
end tell
@svsmailus
Copy link

Any idea how to fix this error with the script?

error "VoodooPad got an error: every item of every page of document 1 doesn’t understand the count message." number -1708 from every item of every page of document 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment