home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD1.iso
/
CDRom
/
ACDFS3_5.DMS
/
in.adf
/
ARexx_Samples.lha
/
ARexx_Samples
/
AsimTunes
/
get_alarm.rexx
< 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
OS/2 REXX Batch file
|
1995-08-23
|
389 b
|
23 lines
/* This example will demonstrate the use of the get_alarm command
in AsimTunes.
(C)1993-1995 Asimware Innovations Inc. */
options results
address "AsimTunes_ARexx"
get_alarm
if rc ~= 0 then do
say 'Failed with 'rc'.'
exit
end
if( result )
then say 'The Alarm? menu item is selected.'
else say 'The Alarm? menu item is not selected.'
exit