home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / DT / DT023B.ZIP / INC-PROG.LZH / ACTIONS.LZH / MULTIPLE.ACT < prev    next >
Text File  |  1991-03-20  |  550b  |  22 lines

  1. Descript;Action List for Object Group
  2. Edit-all;Edit multiple text files
  3.     !verify "Are these objects all text files?"
  4.     !forEachObject
  5.         !edit %F
  6.     !endFor
  7. View-all;View multiple files 
  8.     !forEachObject
  9.         !view %F
  10.     !endFor
  11. Arc-all;Archive multiple files
  12.     !query 1 "Enter name of LHA archive to which to add these objects" 12
  13.     !verify "OK to archive these objects to '%1'?"
  14.     lha u %1 %m
  15. Copy-all;Copy multiple files
  16.     !query 1 "Copy to what directory?" 65
  17.     copy %m %1
  18.     !pause
  19.     !relogDir %1
  20. Del-all;Delete multiple files
  21.     !deleteGroup
  22.