home *** CD-ROM | disk | FTP | other *** search
- /* This example will demonstrate the use of the set_current_track command
- in AsimTunes.
-
- (C)1993-1995 Asimware Innovations Inc. */
-
-
- options results
-
- address "AsimTunes_ARexx"
-
- get_num_tracks
- if rc ~= 0 then do
- say 'Failed with 'rc'.'
- exit
- end
-
-
- cur_track = result
-
- set_current_track cur_track
- say 'Current track is set to' cur_track' (the last track).'
- exit
-