home *** CD-ROM | disk | FTP | other *** search
/ Hope PC Multimedia SuperPack 2 / HOMEPC.iso / CAKEWALK / CH_MIN7.CA_ / CH_MIN7.bin
Text File  |  1996-02-22  |  641b  |  26 lines

  1. ;; CH_MIN7.CAL
  2. ;;
  3. ;; Treats each note as the root of a dominant 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. ; epilog
  23. NIL
  24.  
  25.  
  26.