home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Menu_SaveDefMac.edge 1.0 (Friday 22-Oct-93 12:55:22)
- **
- ** Save the default macro to a file
- **
- ** Written by Thomas liljetoft & Inovatronics
- */
-
- options results
-
- /* check to see if it exists */
- if exists('ram:edge.macro') then do
-
- /* where to we want to save the default macro to */
- requestfile title """Save Macro As...""" path """rexx:""" getdir save
-
- /* copy it to there then */
- if rc==0 then address command copy """ram:edge.macro""" result
- end
-
- /* if not then complain */
- else requestnotify """There is no default macro."""
-