home *** CD-ROM | disk | FTP | other *** search
- ;; Wipe Selected Automation.cal
- ;;
- ;; A CAL program to wipe out pre-selected automation controller data.
- ;;
- ;; Jamie O'Connell: 02/23/99 [Cakewalk]
- ;;
-
- (do
- (include "need20.cal") ; Require version 2.0 or higher of CAL
-
- (forEachEvent
- (do
- (if (|| (&& (== Event.Kind CONTROL) (== Control.Num 7))
- (&& (== Event.Kind CONTROL) (== Control.Num 10)))
- (do
- (delete)
- )
- )
- )
- )
- )
-
-