Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Speak new Mail notifications via a set of scripts' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Speak new Mail notifications via a set of scripts
Authored by: dwise on Oct 05, '05 08:37:04AM

You need edit the SayMailThreaded script with the Script Editor and modify it as show:


if msgReply then
set speechText to group & " reply from " & fromPerson
(*& " about " & theSubject*)
Put this part of line between Parenthesis and asterisc
else if aForward then
-- or if it's a forward
set speechText to group & "forward from " & fromPerson
(*& " about " & theSubject*)
Put this part of line between Parenthesis and asterisc
else
set speechText to "New " & group & " mail from " & fromPerson
(*& " about " & theSubject*)
Put this part of line between Parenthesis and asterisc
end if



[ Reply to This | # ]