Hey Axel,
On Nov 21, 2013, at 02:13, Axel Luttgens <email@hidden> wrote:I must be quite dumb, since I still don't understand what the thread is about...
Lack of understanding is not a proper indicator of intelligence... :)
But I'm intrigued... ;-)
All of this began with this snippet:
tell application "Mail" set aMessage to first item of (get selection) set replyMessage to reply aMessage with opening window end tell
supposed to replicate the contents of the message upon each invocation. I don't see such a thing happen here.
Try adding a recipient in the snippet.
Hmm. That caused the quoted text to be duplicated on Lion, Mountain Lion, and a few times during other experiments on Mavericks. BUT it's not causing a problem here right at the moment.
I wonder what's causing the right behavior to reassert. (I have {Quote the text of the original message} turned ON.)
Okay. I got it to get a little wonky by changing the subject. Try this and see what happens:
-------------------------------------------------------------------------------------------
tell application "Mail" # activate set aMessage to first item of (get selection) set replyMessage to reply aMessage with opening window tell replyMessage set address of to recipients to "" make new recipient at end of to recipients with properties ¬ make new recipient at end of to recipients with properties ¬ set subject to "Huh? It's Working Correctly?"
end tell end tell
-------------------------------------------------------------------------------------------
-- Best Regards, Chris
|