home *** CD-ROM | disk | FTP | other *** search
- /* If choosen for the default AREXX script, this script
- will copy all clicked pictures into the directory
- specified below.
- */
-
- OPTIONS RESULTS
-
- PARSE ARG iname itype
-
- DestDir = "ram:"
- /* ^- This is the name of the destination directory.
- Edit it for your requirements
- */
-
-
- ADDRESS COMMAND
-
- 'copy 'iname DestDir
-
- ADDRESS IDESK_REXXPORT
-
- exit
-
-
-