Maintaining Text Style When Using Applescript to Insert Note inMail Message

N

Nigel Hall

Hi All,

I have the following little script ¡© derived from one of Paul Berkowitz's -
to insert a Note into a new mail message:

tell application "Microsoft Entourage"
if class of front window is draft window then
set selection to {get content of every note whose name is "Standard
Signature"}
end if
end tell

It works fine, but the styled text of the Note becomes plain text during the
transition.

Does anyone know how to keep the styling of the text when doing this?

Thanks,

Nigel
 
B

Barry Wainwright

Hi All,

I have the following little script ­ derived from one of Paul Berkowitz's - to
insert a Note into a new mail message:

tell application "Microsoft Entourage"
if class of front window is draft window then
set selection to {get content of every note whose name is "Standard
Signature"}
end if
end tell

It works fine, but the styled text of the Note becomes plain text during the
transition.

Does anyone know how to keep the styling of the text when doing this?

Thanks,

Nigel

I don¹t believe you can :(
 
Top