I’m trying to create a script that creates new notes in Mountain Lion’s Notes.app where it will show the name of the note in the note body then a blank line, then the main body text. I’ve tried a few things but here’s the script:
tell application "Notes"
tell account "iCloud"
tell folder "Notes"
make new note with properties {name:noteName, body:noteName & return & return & noteText}
end tell
end tell
end tell
So in the main note it should be as follows:
[i]Note Title
Blah, blah, blah,
Blah, blah, blah…[/i]
Instead of:
Note Title
Blah, blah, blah,
Blah, blah, blah…
Adding “& return” doesn’t work for me. Any idea on how I could achieve this?