The following text should be displayed using a fixed width font like courier.
So lets program this (probably not very useful) 7 step cresencendo:
0: flute 8' off
1: flute 8' on, flute 4' off
2: flute 8' on, flute 4' on, 8' off
3: flute 8' off, flute 4' on, 8' on, 4' off
4: flute 4' off, 8' on, 4' on, 2' off
5: 8' on, 4' on, 2' on, 1' off
6: 8' on, 4' on, 2' on, 1' on
First, let us create a matrix, which lists the drawstop names in one direction and the crescendo slots in the other (in our case 6 drawstops x 7 slots).
Put a "-" at each position, where we want to turn it off (or fore it to off).
Put a "+" at each position, where we want to turn it on (or fore it to on).
Fill the remaining slots with "o".
This is the results:
Code:
1 2 3 4 5 6 7
flute 8': - + + - o o o
flute 4': o - + + - o o
princ 8': o o - + + + +
princ 4': o o o - + + +
princ 2': o o o o - + +
princ 1': o o o o o - +
Then create the programming table for scope. Take a copy of the table and replace all "-" and "+" with "X":
Code:
1 2 3 4 5 6 7
flute 8': X X X X o o o
flute 4': o X X X X o o
princ 8': o o X X X X X
princ 4': o o o X X X X
princ 2': o o o o X X X
princ 1': o o o o o X X
With this information, we can start programming. Reset all drawstops (G.C from the sequencer panel) and open the cresecendo panel.
Move to slot 1 (with "<"), enable "scope" [and maybe also "full" - see Lars screen casts for an explanation of full).
Then program the scope table:
Code:
1 2 3 4 5 6 7
flute 8': X X X X o o o
flute 4': o X X X X o o
princ 8': o o X X X X X
princ 4': o o o X X X X
princ 2': o o o o X X X
princ 1': o o o o o X X
Switch all stops on, which contain "X" for the first slot. Switch all stops off, which contain "o" for the first slot. Press "set" + "current" to programm the 1. slot.
Switch all stops on, which contain "X" for the 2. slot. Switch all stops off, which contain "o" for the 2. slot. Press "set" + ">" to programm the 2. slot.
Switch all stops on, which contain "X" for the 3. slot. Switch all stops off, which contain "o" for the 3. slot. Press "set" + ">" to programm the 3. slot.
Switch all stops on, which contain "X" for the 4. slot. Switch all stops off, which contain "o" for the 4. slot. Press "set" + ">" to programm the 4. slot.
Switch all stops on, which contain "X" for the 5. slot. Switch all stops off, which contain "o" for the 5. slot. Press "set" + ">" to programm the 5. slot.
Switch all stops on, which contain "X" for the 6. slot. Switch all stops off, which contain "o" for the 6. slot. Press "set" + ">" to programm the 6. slot.
Switch all stops on, which contain "X" for the 7. slot. Switch all stops off, which contain "o" for the 7. slot. Press "set" + ">" to programm the 7. slot.
Afterwarts program the content:
Code:
1 2 3 4 5 6 7
flute 8': - + + - o o o
flute 4': o - + + - o o
princ 8': o o - + + + +
princ 4': o o o - + + +
princ 2': o o o o - + +
princ 1': o o o o o - +
Make sure, that "set" is off, move with "<" to slot 1 and enable "scoped".
Switch all stops on, which contain "+" for the first slot. Switch all stops off, which contain "-" for the first slot. Press "set" + "current" to programm the 1. slot.
Switch all stops on, which contain "+" for the 2. slot. Switch all stops off, which contain "-" for the 2. slot. Press "set" + ">" to programm the 2. slot.
Switch all stops on, which contain "+" for the 3. slot. Switch all stops off, which contain "-" for the 3. slot. Press "set" + ">" to programm the 3. slot.
Switch all stops on, which contain "+" for the 4. slot. Switch all stops off, which contain "-" for the 4. slot. Press "set" + ">" to programm the 4. slot.
Switch all stops on, which contain "+" for the 5. slot. Switch all stops off, which contain "-" for the 5. slot. Press "set" + ">" to programm the 5. slot.
Switch all stops on, which contain "+" for the 6. slot. Switch all stops off, which contain "-" for the 6. slot. Press "set" + ">" to programm the 6. slot.
Switch all stops on, which contain "+" for the 7. slot. Switch all stops off, which contain "-" for the 7. slot. Press "set" + ">" to programm the 7. slot.
The state of all slots with "o" does not matter. Afterwards make sure, that set is off.