That is pretty close (it changes the account for a selected message in entourage). It would be even better if it worked straight from FM script step but it doesn't at the moment.
Any programmers got some suggestions how to modify it so it will change the account for the email being sent to Entourage from FM? Kind regards, Laz On 7/11/07 14:00, "Entourage:mac Talk" <[email protected]> wrote: > Most likely you can add the applescript right into the FM script with > applescript step after sendmail step. > > > Something like.... (probably not quite right...) > > --------------------- > > tell application "Microsoft Entourage" > set selectedMessages to current messages > -- if there are no messages selected, warn the user and then quit > if selectedMessages is {} then > display dialog "Please select a message first and then run this > script." with icon 1 > return > end if > repeat with theMessage in selectedMessages > -- Assume theMsg is a reference to the message > set account of theMessage to POP account "MY_ACCOUNT_NAME" > end repeat > end tell > > ------------------- > > > -- > Thanks - RevDave > [EMAIL PROTECTED] > [db-lists] -- To unsubscribe: <mailto:[EMAIL PROTECTED]> archives: <http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/> old-archive: <http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>
