AppleScripts

J

Jeremy Fieldsend

I'd like to create (find?) a script that will allow me to set up a Note
in entrourage
 
B

BB

I'd like to create (find?) a script that will allow me to set up a Note
in entrourage

Hello,

It's not really clear what you are looking for, but in its simplest form a
script to create a note could look like this:

tell application "Microsoft Entourage"

make new note with properties {name:"my sample title", content:"my
sample content"}

end tell

-Bo
 
Top