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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-06-17
|
298 b
|
23 lines
/*
$VER: Save&Exit.ie 1.0 (14.9.95)
Save the actual GUI and then quit IEditor: I'm too lazy to insert this
function in a menu, so here's the ARexx version!
*/
OPTIONS RESULTS
address 'IEDITOR.1'
/* Check if the GUI has a name */
'getname'
if result = '' then exit
'save'
'quit'
exit