home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 3
/
Meeting_Pearls_III.iso
/
Pearls
/
mus
/
Metro
/
Rexx
/
example2.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-09-17
|
665b
|
29 lines
/*
* Example Metronome ARexx script.
*
* You need to run the Metro first!
*
* Plays 4 crotchets then 8 quavers, four times.
*/
ADDRESS METRO.1
tempo 90 /* Set tempo */
note 4 /* Set note type to crotchets */
start /* Start */
waitticks 3 /* Note: 1 click has already started */
note 8 /* Change to quavers */
waitticks 8 /* Wait for 8 quavers */
do for 3 /* Do loop 3 times... once has been done already */
note 4 /* Back to crotchets */
waitticks 4 /* Wait for 4 crotchets */
note 8 /* Change to quavers */
waitticks 8 /* Wait for 8 quavers */
end
nomoreticks /* Stop and let last quaver finish playing */