home *** CD-ROM | disk | FTP | other *** search
/ The Best of Mecomp Multimedia 2 / MECOMP-CD-II.iso / amiga / programmieren / gui / ieditor / arexx / save&exit.ie < prev    next >
Encoding:
Text File  |  1997-06-17  |  298 b   |  23 lines

  1. /*
  2.   $VER: Save&Exit.ie 1.0 (14.9.95)
  3.  
  4.   Save the actual GUI and then quit IEditor: I'm too lazy to insert this
  5.   function in a menu, so here's the ARexx version!
  6.  
  7. */
  8.  
  9. OPTIONS RESULTS
  10.  
  11. address 'IEDITOR.1'
  12.  
  13. /* Check if the GUI has a name */
  14.  
  15. 'getname'
  16.  
  17. if result = '' then exit
  18.  
  19. 'save'
  20. 'quit'
  21.  
  22. exit
  23.