home *** CD-ROM | disk | FTP | other *** search
/ DTP Toolbox / DTPToolbox.iso / utilities / graphics / imagedesk / rexx / copyfiles.idesk < prev    next >
Encoding:
Text File  |  1995-09-13  |  370 b   |  25 lines

  1. /* If choosen for the default AREXX script, this script
  2.    will copy all clicked pictures into the directory
  3.    specified below.
  4. */
  5.  
  6. OPTIONS RESULTS
  7.  
  8. PARSE ARG iname itype
  9.  
  10. DestDir = "ram:"
  11. /*         ^- This is the name of the destination directory.
  12.               Edit it for your requirements
  13. */
  14.  
  15.  
  16. ADDRESS COMMAND
  17.  
  18. 'copy 'iname DestDir
  19.  
  20. ADDRESS IDESK_REXXPORT
  21.  
  22. exit
  23.  
  24.  
  25.