Thomas wrote:
Does anyone know how/if it's possible to create/edit notes in
Mail.app? Either Javascript, QS, or some combo of both. I take a lot
of notes at work, and would love to be able to have them all on my
computer, rather than on pads of paper. Thanks!
In applescript it is not possible to create a new note without GUI
scripting. And forget about editing them. Better use text files, since
Quicksilver allows to append text, prepend text, change a particular
line in text file etc
tell application "Mail"
activate
tell application "System Events"
tell process "Mail"
keystroke "n" using command down & control down
end tell
end tell
end tell