home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Menu_PlayMDefMac.edge 1.3 (Thursday 11-Nov-93 19:17:19)
- **
- ** Playback the default macro till it returns an error
- **
- ** Written by Thomas liljetoft & Inovatronics
- */
-
- options results
-
- /* check to see if it exists */
- if exists('ram:edge.macro') then do
-
- /* put edge to sleep */
- disableuser
-
- /* increase the error watermark */
- 'putenvvar _WE_ErrorLevel 6'
-
- /* loop N times */
- do forever
- 'ram:edge.macro'
- if result='RESULT' then nop
- else if result~=0 then leave
-
- /* check to see if the user want's to give up yet */
- checkabort
- if rc~=0 then leave
- end
-
- /* wake edge back up */
- enableuser
- end
-
- /* if not then complain */
- else 'requestnotify "There is no default macro."'
-