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


Show All | 18 comments | Create New Account
Click here to return to the 'Show All' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Show All
Authored by: foozmeat on Jan 15, '04 03:52:46PM

Hacked up from the original script

[code]
try
tell application "Mail"
set theViewer to front message viewer
set theMsg to messages of theViewer
tell theViewer to set properties to {visible messages:theMsg}
end tell
on error the errMsg number the errNmb
if the errNmb is not -128 then
set the errTxt to "Error: " & the errNmb & ". " & the errMsg
display dialog the errTxt buttons {"Cancel"} default button 1
else
error number -128
end if
end try
[/code]



[ Reply to This | # ]