I'm creating a note from an Entourage mail message:
tell application "Microsoft Entourage"
set msg to item 1 of (get current messages)
set theSub to subject of msg
set theText to content of msg
end tell
tell application "Yojimbo"
set newNote to make new note item with properties {name:theSub,
contents:theText}
activate
end tell
I want to open the note I just created. "open newNote" does not work,
assumes a file. There is no "select" command. "make new window with contents
newNote" does not work either; in fact, "make new window" fails with the
same error, even when the note isn't referenced.
How can I accomplish what I want? Or can I?