home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2008 February / MAC_easy_02_08.iso / Software / Mail Plug-ins / MailUnreadStatusBar046.dmg / MailUnreadStatusBar.app / Contents / Resources / showFrontMost.applescript < prev   
Encoding:
Text File  |  2006-10-28  |  298 b   |  15 lines

  1. tell application "Mail"
  2.     activate
  3.     set winid to id of message viewers
  4.     if winid is {} then
  5.         tell application "System Events"
  6.             if UI elements enabled then
  7.                 tell process "Mail"
  8.                     keystroke "n" using {command down, option down}
  9.                     delay 1
  10.                 end tell
  11.             end if
  12.         end tell
  13.     end if
  14. end tell
  15.