Re: setting message to unread
Re: setting message to unread
- Subject: Re: setting message to unread
- From: Christopher Stone <email@hidden>
- Date: Sat, 24 Oct 2015 08:51:28 -0500
- X_v_e_cd: 45ec071df0a6a438be01b810b5213917
- X_v_r_cd: 15307aa74790c0ab356e92b89e599281
On Oct 24, 2015, at 07:27, 2551 <email@hidden> wrote:
2. In the applescript, add the line set read status of theMessages to true just before the end of the "perform action…" handler.
______________________________________________________________________
Hey Phil,
I haven't fooled with AppleScript rules in Mail for some time due to their brokenness, although I'll have to test in El Capitan to see what's different (if anything).
This works fine on 10.11.1:
---------------------------------- tell application "Mail" set selMsgList to selection if selMsgList ≠ {} then set selMsg to item 1 of selMsgList tell selMsg set read status to true delay 0.2 set read status to false end tell end if end tell ----------------------------------
I conjecture that you need to move the message(s) in your AppleScript rather than as a different action in the rule.
I don't have time to test right now though.
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden