home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD1.iso
/
CDRom
/
ASIMCDfs3,0MayorUpdate.LHA
/
arexx_samples
/
asimtunes
/
get_current_track.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
OS/2 REXX Batch file
|
1994-08-01
|
355 b
|
21 lines
/* This example will demonstrate the use of the get_current_track command
in AsimTunes.
(C)1993 Asimware Innovations */
options results
address "AsimTunes_ARexx"
get_current_track
if rc ~= 0 then do
say 'Failed with 'rc'.'
exit
end
cur_track = result
say 'Current track is set to' cur_track'.'
exit