home *** CD-ROM | disk | FTP | other *** search
/ Boot Disc 4 / boot-disc-1996-12.iso / Apps / Cakewalk / PROAUD45 / CH_MIN7.CA_ / CH_MIN7.bin
Text File  |  1996-05-20  |  633b  |  25 lines

  1. ;; Minor 7th Chord.cal
  2. ;;
  3. ;; Treats each note as the root of a minor 7th chord; creates that chord:
  4. ;; For each note event, adds three note events with same time, vel, and dur
  5. ;; but a minor 3rd, a perfect 5th, and a minor 7th higher.
  6. ;;
  7.  
  8. (do
  9.     (include "need20.cal")    ; Require version 2.0 or higher of CAL
  10.  
  11.     (forEachEvent
  12.         (if (== Event.Kind NOTE)
  13.            (do
  14.              (insert Event.Time Event.Chan NOTE (+ Note.Key  3) Note.Vel Note.Dur)
  15.              (insert Event.Time Event.Chan NOTE (+ Note.Key  7) Note.Vel Note.Dur)
  16.              (insert Event.Time Event.Chan NOTE (+ Note.Key 10) Note.Vel Note.Dur)
  17.            )
  18.         )
  19.     )
  20. )
  21.  
  22.  
  23.  
  24.  
  25.