home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993 April: Penguin on DISC / ADC Developer CD (1993-04) (''Penguin On DISC'')_iso / Dev.CD Apr 93.iso / System Software / System Extensions / AppleScript Beta / Example Scripts / Example Scripts (as text) / Finder Scripts / Trash ’em! < prev   
Encoding:
Text File  |  1992-12-02  |  407 b   |  13 lines  |  [TEXT/ToyS]

  1. tell application "Finder"
  2.     set Message to "Really move "
  3.     set IsFirst to true
  4.     repeat with zog in selection
  5.         if not IsFirst then copy Message & ", " to Message
  6.         set IsFirst to false
  7.         copy Message & name of zog to Message
  8.     end repeat
  9.     display dialog Message & " to the Trash?" buttons {"Cancel", "Trash"} with icon 2
  10.     if button returned of result is "Trash" then
  11.         move selection to trash
  12.     end if
  13. end tell