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