AOL 5.0 script
AOL 5.0 script
- Subject: AOL 5.0 script
- From: David Jackson <email@hidden>
- Date: Fri, 29 Jun 2001 09:53:53 -0700
Hey Everyone, yeah I'm quite new at this so maybe my first posting didn't
make much sense. I'm trying to find out what the proper AppleScript commands
are for (the subject - header, and the message body) in AOL 5.0. I'm not
really sure if these are considered to be the variables or objects.
This is a section from the old script for AOL 4.0, that opened a new
message, pasted the recipients name, pasted the subject header, and the
message body. Now with AOL 5.0 it will only paste the recipients name, then
gets hung up on the rest of it.
Any help would be much appreciated.
tell application "America Online" to tell theApp
set newMsg to make new document with properties {kind:mail}
set newMailer to mailer of newMsg
make new addressee at end of newMailer with properties {kind:regular,
name:theRecipient}
set subject of newMailer to theSubject
set text of newMsg to theBody
end tell
Cheers,