home *** CD-ROM | disk | FTP | other *** search
/ The Mac 13 / the-mac-13.iso / Shareware City / Comms and Networking / QuickAgent / Sample AppleScripts / sample 4 < prev   
Encoding:
Text File  |  1994-08-22  |  364 b   |  14 lines  |  [TEXT/ToyS]

  1. tell application "QuickAgent"
  2.     Set QM logon "MEPSI_DRLG˜MONET˜Jeff Benjamin˜mypassword"
  3.     set vNum to number of messages
  4.     
  5.     set vList to {}
  6.     repeat with i from 1 to vNum
  7.         set vTmpList to {Sender 1, Subject 1, Date 1, Time 1, Message body 1, (Enclosure Info 1) as text}
  8.         set vList to vList & {vTmpList}
  9.         Delete message 1
  10.         beep
  11.     end repeat
  12. end tell
  13.  
  14. {vNum, vList}