home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 3
/
Meeting_Pearls_III.iso
/
Pearls
/
mus
/
Metro
/
Rexx
/
example1.rexx
next >
Wrap
OS/2 REXX Batch file
|
1994-09-17
|
523b
|
24 lines
/*
* Example Metronome ARexx script.
*
* You need to run the Metro first!
*
* Plays 4 crotchets, 8 quavers then 4 crotchets again.
*/
ADDRESS METRO.1
tempo 90 /* Set tempo */
note 4 /* Set note type to crotchets */
start /* Start Metronome */
waitticks 3 /* 1 click has already started, so only wait for 3 */
note 8 /* Change to quavers */
waitticks 8 /* Wait for 8 quavers */
note 4 /* Back to crotchets */
waitticks 4 /* Wait for 4 crotchets */
nomoreticks /* Stop and let last crotchet finish playing */