Created
May 11, 2016 17:27
-
-
Save alicraigmile/33b3a637103a2adc0f44a44f033a1146 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MacOS Mail.app (or at least Version 7.3 (1878.6), doesn't show you how many results are returned in a search. | |
# With this script, select the messages you want to count. | |
# | |
# by Ali Craigmile <[email protected]> | |
tell application "Mail" | |
activate | |
set sel to selection | |
set len to length of sel | |
display dialog "items: " & len | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment