On 1/1/05 1:29 AM, "John Carlsen" <ThinkAgain@...> wrote:
> I have been using eMA successfully with Entourage X & every version of
> OS X, and with Entourage 2001 & OS 9. I do not have Entourage 2004.
Hi, John,
Glad to see you back. Although there is not much changed in Entourage 2004
in the AppleScript model for email, there is one thing to watch out for: the
class of text of messages (and everything else) is 'Unicode text', NOT
'string'. So if you have any routines that check for the class of (get the
selection) or anything like that, it will have to be changed, typically from
if class of theTest is string then
to
if {class of theTest} is in {string, Unicode text}
to cover all Entourage versions.
--
Paul Berkowitz