home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-08-21 | 364 b | 16 lines | [TEXT/ToyS] |
- tell application "QuickAgent"
- set msgCnt to number of messages
- set msgNr to 1
- repeat while msgNr ≤ msgCnt
- set subTxt to Subject (msgNr)
- set msgTxt to Message body (msgNr)
- display dialog subTxt
- if msgTxt = "" then
- set msgTxt to "***EMPTY***"
- else
- set msgTxt to msgTxt
- end if
- display dialog msgTxt
- set msgNr to msgNr + 1
- end repeat
- end tell