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


Click here to return to the 'Scripts from Sal at Apple...' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Scripts from Sal at Apple...
Authored by: eksimo on Jan 16, '04 07:34:33AM
this should work:

on error error_message
  display dialog error_message buttons {"Cancel"} default button 1
end try
although i would add some more feedback in the dialog, like

on error error_message
  beep
  display dialog "error showing flagged mails only: " & return & return & ¬
    error_message buttons {"OK"} default button 1
end try


[ Reply to This | # ]